Files
DigiRadio/Software/sdkconfig.defaults
T
micheleandCursor ddbee70c23 Add firmware slices 1–2: skeleton and Wi-Fi provisioning
Implement ESP-IDF walking skeleton with SoftAP, health API, and host
tests, then Slice 2 ISecureStore/NvsSecureStore, STA join, POST
/api/wifi, and the provisioning web UI.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-06 09:10:37 +02:00

14 lines
377 B
Plaintext

# DigiRadio — default Kconfig
# NVS encryption: enable CONFIG_NVS_ENCRYPTION and flash encryption for
# production; nvs_keys partition is reserved in partitions.csv.
CONFIG_IDF_TARGET="esp32s3"
# C++23, exceptions and RTTI off (AGENTS.md §2)
CONFIG_COMPILER_CXX_EXCEPTIONS=n
CONFIG_COMPILER_CXX_RTTI=n
CONFIG_COMPILER_CXX_STD=23
# Logging
CONFIG_LOG_DEFAULT_LEVEL_INFO=y