52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
|
# This tag is used to include this file in the ESP Component Registry:
|
||
|
|
||
|
#
|
||
|
# Default main stack size
|
||
|
#
|
||
|
# This is typically way bigger than needed for stack size. See user_settings.h
|
||
|
#
|
||
|
CONFIG_ESP_MAIN_TASK_STACK_SIZE=55000
|
||
|
|
||
|
# Legacy stack size for older ESP-IDF versions
|
||
|
CONFIG_MAIN_TASK_STACK_SIZE=55000
|
||
|
|
||
|
#
|
||
|
# Watchdog Timers
|
||
|
#
|
||
|
# We don't want to have the watchdog timeout during tests
|
||
|
#
|
||
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0=n
|
||
|
CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1=n
|
||
|
|
||
|
#
|
||
|
# Compiler options
|
||
|
#
|
||
|
CONFIG_COMPILER_OPTIMIZATION_DEFAULT=y
|
||
|
CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE=y
|
||
|
CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL=2
|
||
|
CONFIG_COMPILER_HIDE_PATHS_MACROS=y
|
||
|
CONFIG_COMPILER_STACK_CHECK_MODE_NORM=y
|
||
|
CONFIG_COMPILER_STACK_CHECK=y
|
||
|
|
||
|
# minimum C3 chip revision known to work is 2.
|
||
|
# rev 0 and 1 not available for testing.
|
||
|
# all revisions expected to work.
|
||
|
CONFIG_ESP32C3_REV_MIN_0=
|
||
|
CONFIG_ESP32C3_REV_MIN_1=
|
||
|
CONFIG_ESP32C3_REV_MIN_2=y
|
||
|
CONFIG_ESP32C3_REV_MIN_3=
|
||
|
|
||
|
|
||
|
#
|
||
|
# Partition Table
|
||
|
#
|
||
|
# CONFIG_PARTITION_TABLE_SINGLE_APP is not set
|
||
|
CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y
|
||
|
# CONFIG_PARTITION_TABLE_TWO_OTA is not set
|
||
|
# CONFIG_PARTITION_TABLE_CUSTOM is not set
|
||
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
||
|
CONFIG_PARTITION_TABLE_FILENAME="partitions_singleapp_large.csv"
|
||
|
CONFIG_PARTITION_TABLE_OFFSET=0x8000
|
||
|
CONFIG_PARTITION_TABLE_MD5=y
|
||
|
# end of Partition Table
|