7bc36d23e1
1. Add command for Ethernet based on console component. 2. Make cmd_system and iperf a component that can be referenced by other examples 3. Add "version" command to cmd_system.c 4. Clean up the README.md in all ethernet examples[TW#26525]
27 lines
752 B
Text
27 lines
752 B
Text
# Reduce bootloader log verbosity
|
|
CONFIG_LOG_BOOTLOADER_LEVEL_WARN=y
|
|
CONFIG_LOG_BOOTLOADER_LEVEL=2
|
|
|
|
# Increase main task stack size
|
|
CONFIG_MAIN_TASK_STACK_SIZE=7168
|
|
|
|
# Enable filesystem
|
|
CONFIG_PARTITION_TABLE_CUSTOM=y
|
|
CONFIG_PARTITION_TABLE_CUSTOM_FILENAME="partitions_example.csv"
|
|
CONFIG_PARTITION_TABLE_CUSTOM_APP_BIN_OFFSET=0x10000
|
|
CONFIG_PARTITION_TABLE_FILENAME="partitions_example.csv"
|
|
CONFIG_APP_OFFSET=0x10000
|
|
|
|
# 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
|
|
|
|
# ESP32-specific
|
|
CONFIG_ESP32_DEFAULT_CPU_FREQ_240=y
|
|
CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ=240
|
|
|
|
# Ethernet
|
|
CONFIG_EMAC_L2_TO_L3_RX_BUF_MODE=y
|
|
|