mirror of
https://github.com/openglow-org/forgefirm.git
synced 2026-09-27 08:41:13 -07:00
An ESP32-S3 DevKitC-1 on the bench network drives three relays at the machine's connectors so the acceptance tool can open the lid loop, pull the interlock loop and press the button with nobody in the room. Two contacts are normally closed in loops the safety chain already reads, the third is normally open across the button input and only ever pulsed (20 to 500 ms, the end armed before the line rises); every line is low at boot and after any reset, the task watchdog panics and reboots, and the button channel needs a jumper. HTTP on port 80 under a key in X-Fixture-Key; the hostname announced over DHCP and mDNS. ESP-IDF v5.5 native, the mDNS component pinned in dependencies.lock; fixture.env (git-ignored) is the one input: the wifi, the key, the hostname. fixture.sh builds with idf.py or in the espressif/idf container, flashes with esptool from pip. The decisions that need no hardware live in policy.c with a gcc host test; CI runs it and builds the firmware in the pinned container.
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
# forgefixture build defaults (ESP32-S3 DevKitC-1). idf.py merges these
|
|
# into sdkconfig on the first configure; sdkconfig itself is not tracked.
|
|
CONFIG_IDF_TARGET="esp32s3"
|
|
|
|
# Any DevKitC-1 has at least 8 MB; a 4 MB layout with one large app
|
|
# partition fits every one of them and leaves nothing to choose.
|
|
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
|
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y
|
|
|
|
# A hung task reboots the board to every relay line low rather than
|
|
# holding a button press: the task watchdog panics, and a panic resets.
|
|
CONFIG_ESP_TASK_WDT_INIT=y
|
|
CONFIG_ESP_TASK_WDT_PANIC=y
|
|
CONFIG_ESP_TASK_WDT_TIMEOUT_S=5
|
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=y
|
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=y
|
|
CONFIG_ESP_INT_WDT=y
|
|
CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT=y
|
|
|
|
# Brownout (the relays share the board's 3.3 V with nothing else, but the
|
|
# USB supply is whatever it is): reset rather than limp.
|
|
CONFIG_ESP_BROWNOUT_DET=y
|
|
|
|
# The log on both USB ports: the UART bridge and the native USB-Serial-JTAG.
|
|
CONFIG_ESP_CONSOLE_UART_DEFAULT=y
|
|
CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG=y
|
|
|
|
# HTTP server: a few clients, small requests.
|
|
CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024
|
|
CONFIG_HTTPD_MAX_URI_LEN=128
|
|
CONFIG_HTTPD_PURGE_BUF_LEN=32
|
|
|
|
# Wifi station only; no Bluetooth.
|
|
CONFIG_BT_ENABLED=n
|
|
CONFIG_ESP_WIFI_NVS_ENABLED=y
|
|
CONFIG_LWIP_IPV6=n
|