FreeCalypso > hg > fc-small-hw
view mmtb1/schem+bom/vsrc/sim_socket_block.v @ 68:8bfa10553e36
lunalcd2/src/MCL: different part for two-post VBAT supply header
The tin-plated part is currently out of stock at Digi-Key, but the
better gold-plated part is in stock and still reasonably inexpensive.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 26 Jun 2021 20:40:29 +0000 |
parents | 0f9bdd60ce50 |
children |
line wrap: on
line source
/* This module encapsulates the SIM socket and any needed caps */ module sim_socket_block (GND, VSIM, SIM_CLK, SIM_RST, SIM_IO); input GND, VSIM; input SIM_CLK, SIM_RST; inout SIM_IO; pkg_SIM_socket socket ( .C1(VSIM), .C2(SIM_RST), .C3(SIM_CLK), .C5(GND), .C6(VSIM), .C7(SIM_IO), /* mounting pads */ .M1(GND), .M2(GND) ); /* cap per Leonardo schematics */ capacitor C306 (VSIM, GND); endmodule