FreeCalypso > hg > fc-small-hw
view duart28/src/vsrc/regulator_ic.v @ 28:bd7eec55ebc0
duart28: new design ideas
* added input buffers (LVC with Ioff feature) to prevent high current flow
from powered-up target into powered-down FT2232D inputs;
* added series resistors on outputs to limit current flow from powered-up
adapter into powered-down Calypso target;
* buffer IC changed from 74LVC125A to 74LVC541A.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 28 Jun 2020 22:06:24 +0000 |
parents | 22aba3a61a4b |
children |
line wrap: on
line source
module regulator_ic (IN, OUT, GND, EN); input IN, GND, EN; output OUT; pkg_5pin pkg ( .pin_1(IN), .pin_2(GND), .pin_3(EN), .pin_4(), /* no connect */ .pin_5(OUT) ); endmodule