From af1a9b59c4d07282eeaa081bd3cc5cced95380c5 Mon Sep 17 00:00:00 2001 From: Yurii Date: Sun, 15 Feb 2026 06:30:28 +0300 Subject: [PATCH] fix: `custom_sdkconfig` only for ESP32 C6 --- platformio.ini | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/platformio.ini b/platformio.ini index a900442..1a49cee 100644 --- a/platformio.ini +++ b/platformio.ini @@ -96,11 +96,6 @@ custom_component_remove = espressif/esp_hosted espressif/esp-zboss-lib espressif/esp-zigbee-lib chmorgan/esp-libhelix-mp3 -custom_sdkconfig = '# CONFIG_OPENTHREAD_ENABLED is not set' - '# CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT is not set' - '# CONFIG_LWIP_IPV6 is not set' - '# CONFIG_LWIP_IPV6_AUTOCONFIG is not set' - '# CONFIG_LWIP_PPP_SUPPORT is not set' extra_scripts = post:tools/esp32.py post:tools/build.py build_type = ${env.build_type} @@ -206,6 +201,11 @@ build_flags = ${esp32_defaults.build_flags} -D DEFAULT_SENSOR_INDOOR_GPIO=0 -D DEFAULT_STATUS_LED_GPIO=11 -D DEFAULT_OT_RX_LED_GPIO=10 +custom_sdkconfig = '# CONFIG_OPENTHREAD_ENABLED is not set' + '# CONFIG_ESP_WIFI_ENTERPRISE_SUPPORT is not set' + '# CONFIG_LWIP_IPV6 is not set' + '# CONFIG_LWIP_IPV6_AUTOCONFIG is not set' + '# CONFIG_LWIP_PPP_SUPPORT is not set' [env:otthing] extends = esp32_defaults