From 9d90f3090ac764aa8b7dd1be21d28b188682b649 Mon Sep 17 00:00:00 2001 From: yinqingzhao Date: Fri, 13 Jun 2025 14:26:03 +0800 Subject: [PATCH] feat(wifi): set phy pll track disable default --- components/esp_phy/Kconfig | 10 +++++----- examples/wifi/iperf/sdkconfig.defaults | 6 ++++++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/components/esp_phy/Kconfig b/components/esp_phy/Kconfig index ad84dab755..fd4b0ef23c 100644 --- a/components/esp_phy/Kconfig +++ b/components/esp_phy/Kconfig @@ -178,11 +178,11 @@ menu "PHY" help If enabled, there will be some logs while pll tracking - menuconfig ESP_PHY_DEBUG - bool "Enable PHY Debug" - default n - help - Enabling this option allows different kinds of phy debugging features. + menuconfig ESP_PHY_DEBUG + bool "Enable PHY Debug" + default n + help + Enabling this option allows different kinds of phy debugging features. config ESP_PHY_DISABLE_PLL_TRACK bool "Disable phy pll track(only for experimental)" diff --git a/examples/wifi/iperf/sdkconfig.defaults b/examples/wifi/iperf/sdkconfig.defaults index f096b6f061..7e44f9266f 100644 --- a/examples/wifi/iperf/sdkconfig.defaults +++ b/examples/wifi/iperf/sdkconfig.defaults @@ -13,3 +13,9 @@ CONFIG_LWIP_TCPIP_TASK_PRIO=23 CONFIG_IPERF_TRAFFIC_TASK_PRIORITY=23 CONFIG_IPERF_REPORT_TASK_PRIORITY=24 CONFIG_COMPILER_OPTIMIZATION_PERF=y + +CONFIG_PARTITION_TABLE_SINGLE_APP_LARGE=y + +# These two configurations disable the phy pll track feature, only used for experimental +CONFIG_ESP_PHY_DEBUG=y +CONFIG_ESP_PHY_DISABLE_PLL_TRACK=y