view venus/src/periph/trrs_jack.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 3afd172b83e1
children
line wrap: on
line source

/*
 * This Verilog module encapsulates the physical PCB footprint pinout
 * of the TRRS jack part we are using.
 */

module trrs_jack (T, R, R2, S, T_sw, R_sw);

inout T, R, R2, S;
inout T_sw, R_sw;

pkg_TRRS_jack pkg (.pin_1(S),
		   .pin_2(T),
		   .pin_3(R),
		   .pin_4(R2),
		   .pin_5(T_sw),
		   .pin_6(R_sw)
	);

endmodule