view venus/src/periph/buzzer_wrap.v @ 72:f0038b3d255f

new 32.768 kHz crystal part, same specs as before
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 03 Dec 2021 02:51:51 +0000
parents c661a87159c2
children
line wrap: on
line source

/* wrapper for the buzzer PCB footprint */

module buzzer_wrap (Pos, Neg);

input Pos, Neg;

pkg_buzzer pkg (.pin_1(Pos),
		.pin_2(Neg),
		.pin_3(),	/* no connect */
		.pin_4()	/* ditto */
	);

endmodule