forked from test34/can_wizard
added sdkconfig.defaults
This commit is contained in:
parent
a1c1ec7962
commit
397a49e85e
1 changed files with 44 additions and 0 deletions
44
sdkconfig.defaults
Normal file
44
sdkconfig.defaults
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# Reduce bootloader log verbosity
|
||||||
|
CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
|
||||||
|
CONFIG_BOOTLOADER_LOG_LEVEL=2
|
||||||
|
|
||||||
|
# Increase main task stack size
|
||||||
|
CONFIG_ESP_MAIN_TASK_STACK_SIZE=7168
|
||||||
|
|
||||||
|
|
||||||
|
# Enable filesystem
|
||||||
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
||||||
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions.csv"
|
||||||
|
CONFIG_PARTITION_TABLE_FILENAME="partitions.csv"
|
||||||
|
|
||||||
|
# Enable FreeRTOS stats formatting functions, needed for 'tasks' command
|
||||||
|
CONFIG_FREERTOS_USE_TRACE_FACILITY=y
|
||||||
|
CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y
|
||||||
|
|
||||||
|
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
|
||||||
|
|
||||||
|
CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE=32
|
||||||
|
CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE=2304
|
||||||
|
CONFIG_ESP_MAIN_TASK_STACK_SIZE=7168
|
||||||
|
CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0=y
|
||||||
|
CONFIG_ESP_MAIN_TASK_AFFINITY=0x0
|
||||||
|
CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE=2048
|
||||||
|
CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG=y
|
||||||
|
CONFIG_ESP_CONSOLE_SECONDARY_NONE=y
|
||||||
|
CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED=y
|
||||||
|
CONFIG_ESP_CONSOLE_UART_NUM=0
|
||||||
|
CONFIG_ESP_INT_WDT=y
|
||||||
|
CONFIG_ESP_INT_WDT_TIMEOUT_MS=2000
|
||||||
|
CONFIG_ESP_TASK_WDT_EN=y
|
||||||
|
CONFIG_ESP_TASK_WDT_INIT=y
|
||||||
|
CONFIG_ESP_TASK_WDT_TIMEOUT_S=15
|
||||||
|
CONFIG_ESP_DEBUG_OCDAWARE=y
|
||||||
|
CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4=y
|
||||||
|
|
||||||
|
CONFIG_FREERTOS_UNICORE=y
|
||||||
|
CONFIG_FREERTOS_HZ=1000
|
||||||
|
CONFIG_FREERTOS_OPTIMIZED_SCHEDULER=y
|
||||||
|
|
||||||
|
CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY=y
|
||||||
|
CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=1
|
||||||
|
CONFIG_FREERTOS_IDLE_TASK_STACKSIZE=1536
|
Loading…
Reference in a new issue