view venus/src/periph/bl_current_select.v @ 94:4502eec1e805

D405: use Nexperia part sourced from Digi-Key direct The previously selected part was from a Digi-Key marketplace vendor, and they seem to not actually have that part, as the order has been in limbo for over a month - so I put in the time and effort to look around, and found a readily available equivalent part from Nexperia.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 11 Jan 2022 19:11:22 +0000
parents 9f5a3567d699
children
line wrap: on
line source

module bl_current_select (GND, Vio, BL_GPIO11, BL_GPIO12, SET);

input GND, Vio;
input BL_GPIO11, BL_GPIO12;
output SET;

wire buf_out_GPIO11, buf_out_GPIO12;

/* U403 buffer common part */
logic_ic_common U403_common (.Vcc(Vio), .GND(GND));

/* bypass capacitor */
capacitor U403_bypass (Vio, GND);

/* buffer slots */
buffer_slot_3state buf_GPIO11 (.A(Vio), .nOE(BL_GPIO11), .Y(buf_out_GPIO11));
buffer_slot_3state buf_GPIO12 (.A(Vio), .nOE(BL_GPIO12), .Y(buf_out_GPIO12));

/* MAX1916 current control resistors */
resistor R_fixed  (Vio, SET);
resistor R_GPIO11 (buf_out_GPIO11, SET);
resistor R_GPIO12 (buf_out_GPIO12, SET);

endmodule