FreeCalypso > hg > freecalypso-schem2
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/venus/src/periph/buzzer_wrap.v Wed Dec 01 06:50:25 2021 +0000 @@ -0,0 +1,13 @@ +/* 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