FreeCalypso > hg > freecalypso-schem2
view venus/src/usb/usb_conn.v @ 36:c1256c8757c3
eliminate R209 and tie Iota VLMEM directly to UPR
We already eliminated R210 (VLMEM pull-down option) earlier, because
our simplified LCD power supply and reset line wiring is incompatible
with 1.8V MEMIF. But with VLMEM always needing to be high, a pull-up
resistor offers no advantage over a direct tie to UPR, so let's
eliminate the superfluous resistor.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 22 Nov 2021 19:19:59 +0000 |
parents | 9f70dc110ad7 |
children |
line wrap: on
line source
/* * This module captures the mini-USB connector. */ module usb_conn (GND, VBUS, Dminus, Dplus, ID); inout GND, VBUS, Dminus, Dplus, ID; conn_miniUSB_plus4 conn (.pin_1(VBUS), .pin_2(Dminus), .pin_3(Dplus), .pin_4(ID), .pin_5(GND), /* mounting pads */ .pin_6(GND), .pin_7(GND), .pin_8(GND), .pin_9(GND) ); endmodule