You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
684 B
19 lines
684 B
# 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
|
|
|
|
# disable task watchdog since this app uses an interactive menu
|
|
CONFIG_ESP_TASK_WDT_INIT=n
|
|
|
|
# some tests verify file name encoding
|
|
CONFIG_FATFS_API_ENCODING_UTF_8=y
|
|
CONFIG_FATFS_CODEPAGE_936=y
|
|
|
|
# some of the tests verify concurrent operation of FAT partitions in
|
|
# an SD card and in Flash, so need to use a custom partition table.
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
|
|