sdkconfig.defaults 683 B

1234567891011121314151617181920
  1. # Reduce bootloader log verbosity
  2. CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
  3. CONFIG_BOOTLOADER_LOG_LEVEL=2
  4. # Increase main task stack size
  5. CONFIG_ESP_MAIN_TASK_STACK_SIZE=7168
  6. # Enable filesystem
  7. CONFIG_PARTITION_TABLE_CUSTOM=y
  8. CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_example.csv"
  9. CONFIG_PARTITION_TABLE_FILENAME="partitions_example.csv"
  10. # Enable FreeRTOS stats formatting functions, needed for 'tasks' command
  11. CONFIG_FREERTOS_USE_TRACE_FACILITY=y
  12. CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS=y
  13. CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
  14. # On chips with USB serial, disable secondary console which does not make sense when using console component
  15. CONFIG_ESP_CONSOLE_SECONDARY_NONE=y