mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
4ac24549ad
simple_sniffer was moved from /wifi folder to /network folder network_tests was moved from /system to /network folder README's were updated accordingly to reflect new structure
22 lines
594 B
Plaintext
22 lines
594 B
Plaintext
# 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_example.csv"
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions_example.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
|
|
|
|
# FatFS
|
|
CONFIG_FATFS_LFN_HEAP=y
|
|
CONFIG_FATFS_MAX_LFN=31
|