annotate venus/src/periph/Si9407AEY.v @ 70:8bc2aa52fd23

manual RESET button new part: 260 g force, shorter actuator One of the main envisioned use cases for FC Venus is field demonstration: the board will be carried around, mounted on a sheet of acrylic or somesuch, it will have a battery and an antenna connected, there will be a test SIM with active service inserted, and the setup will be ready to demonstrate as a working phone at a moment's notice. But when a demo is not actively in progress, the fully assembled setup will be transported around in a big and loose ESD bag, and it will need to be equivalent to a traditional phone in its switched-off state: battery present, RTC keeping time, but not switched on all the time. Having a RESET button of the same keyswitch type as used for the regular keypad and PWON would cause a problem for such field transport scenarios: any spurious press of this button would cause a "misc boot" switch-on. Short spurious presses of PWON are filtered out by the firmware (automatic power-off if the button isn't held down long enough), but the same cannot be done for super-low-level nTESTRESET. However, a button with significantly greater operating force and a shorter actuator (not sticking out to the same height as the regular keypad buttons) should be much safer.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 02 Dec 2021 22:40:39 +0000
parents 74a89c0a6466
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
30
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 /*
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 * This Verilog module encapsulates a MOSFET in a Si9407AEY-compatible
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 * SOIC-8 footprint.
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 */
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 module Si9407AEY (G, S, D);
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 input G, S;
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 output D;
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 /* instantiate the package; the mapping of signals to pins is defined here */
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 pkg_IC_8pin pkg (.pin_1(S),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 .pin_2(S),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 .pin_3(S),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 .pin_4(G),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 .pin_5(D),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 .pin_6(D),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 .pin_7(D),
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 .pin_8(D)
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 );
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22
74a89c0a6466 Venus MCL: add Q401 charging circuit MOSFET
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 endmodule