mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
21 lines
711 B
Plaintext
21 lines
711 B
Plaintext
# General options for additional checks
|
|
CONFIG_HEAP_POISONING_COMPREHENSIVE=y
|
|
CONFIG_COMPILER_WARN_WRITE_STRINGS=y
|
|
CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
|
|
CONFIG_FREERTOS_WATCHPOINT_END_OF_STACK=y
|
|
CONFIG_COMPILER_STACK_CHECK_MODE_STRONG=y
|
|
CONFIG_COMPILER_STACK_CHECK=y
|
|
CONFIG_NVS_ASSERT_ERROR_CHECK=y
|
|
|
|
# Disable task watchdog since this app uses an interactive menu
|
|
CONFIG_ESP_TASK_WDT_INIT=n
|
|
|
|
# SPIFFS configuration
|
|
CONFIG_SPIFFS_USE_MTIME=n # Disable mtime update as the partition is read-only
|
|
|
|
# Custom partition table related
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_example.csv"
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions_example.csv"
|
|
CONFIG_ESPTOOLPY_FLASHSIZE_2MB=y
|