comparison venus/src/periph/buzzer_wrap.v @ 60:c661a87159c2

buzzer component nailed down
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 01 Dec 2021 06:50:25 +0000
parents
children
comparison
equal deleted inserted replaced
59:66d99b5be8a3 60:c661a87159c2
1 /* wrapper for the buzzer PCB footprint */
2
3 module buzzer_wrap (Pos, Neg);
4
5 input Pos, Neg;
6
7 pkg_buzzer pkg (.pin_1(Pos),
8 .pin_2(Neg),
9 .pin_3(), /* no connect */
10 .pin_4() /* ditto */
11 );
12
13 endmodule