view venus/src/usb/usb_conn.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 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