You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
845 B
35 lines
845 B
# MicroPython on ESP32, ESP IDF configuration
|
|
# The following options override the defaults
|
|
|
|
CONFIG_IDF_TARGET="esp32"
|
|
|
|
# Application manager
|
|
CONFIG_APP_EXCLUDE_PROJECT_VER_VAR=y
|
|
CONFIG_APP_EXCLUDE_PROJECT_NAME_VAR=y
|
|
|
|
# Bootloader config
|
|
CONFIG_BOOTLOADER_LOG_LEVEL_WARN=y
|
|
|
|
# ESP32-specific
|
|
CONFIG_ESP32_DEFAULT_CPU_FREQ_240=y
|
|
CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0=n
|
|
CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1=n
|
|
CONFIG_ESP32_XTAL_FREQ_AUTO=y
|
|
|
|
# Power Management
|
|
CONFIG_PM_ENABLE=y
|
|
|
|
# FreeRTOS
|
|
CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS=2
|
|
CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION=y
|
|
CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP=y
|
|
|
|
# UDP
|
|
CONFIG_PPP_SUPPORT=y
|
|
CONFIG_PPP_PAP_SUPPORT=y
|
|
CONFIG_PPP_CHAP_SUPPORT=y
|
|
|
|
# v3.3-only (renamed in 4.0)
|
|
CONFIG_LOG_BOOTLOADER_LEVEL_WARN=y
|
|
CONFIG_SUPPORT_STATIC_ALLOCATION=y
|
|
CONFIG_ENABLE_STATIC_TASK_CLEAN_UP_HOOK=y
|
|
|