FreeCalypso > hg > freecalypso-schem2
view venus/src/periph/calypso_uart_in.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 | d33cb696b335 |
children |
line wrap: on
line source
/* * This module encapsulates the mobile power domain buffers * in front of Calypso UART inputs. */ module calypso_uart_in (GND, VBAT, Vio, Host_TxD, Host_RTS, Host_DTR, Host_TxD2, RX_MODEM, CTS_MODEM, GPIO_DTR, RX_IRDA); input GND, VBAT, Vio; input Host_TxD, Host_RTS, Host_DTR, Host_TxD2; output RX_MODEM, CTS_MODEM, GPIO_DTR, RX_IRDA; /* U401 buffer common part */ logic_ic_common U401_common (.Vcc(Vio), .GND(GND)); /* bypass capacitor */ capacitor U401_bypass (Vio, GND); /* buffer slots */ buffer_slot_3state Host_TxD_buffer (.A(Host_TxD), .nOE(GND), .Y(RX_MODEM)); buffer_slot_3state Host_RTS_buffer (.A(Host_RTS), .nOE(GND), .Y(CTS_MODEM)); buffer_slot_3state Host_DTR_buffer (.A(Host_DTR), .nOE(GND), .Y(GPIO_DTR)); buffer_slot_3state Host_TxD2_buffer (.A(Host_TxD2), .nOE(GND), .Y(RX_IRDA)); /* pull-ups to VBAT */ resistor Host_TxD_pullup (Host_TxD, VBAT); resistor Host_DTR_pullup (Host_DTR, VBAT); resistor Host_TxD2_pullup (Host_TxD2, VBAT); /* pull-down to GND */ resistor Host_RTS_pulldown (Host_RTS, GND); endmodule