view venus/src/periph/sim_socket_wrap.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 5b18183f55bf
children
line wrap: on
line source

/* This module is a wrapper around our SIM socket with card detect switch */

module sim_socket_wrap (C1, C2, C3, C5, C6, C7, SW1, SW2);

inout C1, C2, C3, C5, C6, C7;
inout SW1, SW2;

pkg_SIM_socket socket (	.pin_1(C1),
			.pin_2(C2),
			.pin_3(C3),
			.pin_4(SW1),
			.pin_5(C5),
			.pin_6(C6),
			.pin_7(C7),
			.pin_8(SW2)
		);

endmodule