FreeCalypso > hg > freecalypso-schem2
view venus/src/periph/bl_current_sink.v @ 73:a730e72d4bec
new 3.3V USB LDO regulator part, direct replacement
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 03 Dec 2021 07:56:26 +0000 |
parents | d55824058cfc |
children |
line wrap: on
line source
module bl_current_sink (GND, Vio, BL_GPIO9, BL_GPIO11, BL_GPIO12, LEDK); input GND, Vio; input BL_GPIO9, BL_GPIO11, BL_GPIO12; output [1:3] LEDK; wire SET; MAX1916 MAX1916 (.GND(GND), .EN(BL_GPIO9), .SET(SET), .LEDK(LEDK) ); resistor BL_EN_pulldown (BL_GPIO9, GND); bl_current_select cursel (.GND(GND), .Vio(Vio), .BL_GPIO11(BL_GPIO11), .BL_GPIO12(BL_GPIO12), .SET(SET) ); endmodule