From 02c1878f589a467b4d46b4abb2175e35596503ca Mon Sep 17 00:00:00 2001 From: zhuanghang Date: Wed, 15 Jul 2026 17:22:03 +0800 Subject: [PATCH 1/2] feat(phy): update phy lib for esp32s31 & esp32c6 for track --- components/esp_phy/lib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_phy/lib b/components/esp_phy/lib index c6deb4887ae..5695f4f3810 160000 --- a/components/esp_phy/lib +++ b/components/esp_phy/lib @@ -1 +1 @@ -Subproject commit c6deb4887ae1bf02064d6d26e4ea52674885a4ff +Subproject commit 5695f4f38108658bc4a33e4712c1ebcb34911434 From f5cc6235fd8a3afeff4f2677ad6596e4bb4f436b Mon Sep 17 00:00:00 2001 From: muhaidong Date: Mon, 20 Jul 2026 11:25:55 +0800 Subject: [PATCH 2/2] fix(phy): removed all librfate logic from cmake --- components/esp_phy/CMakeLists.txt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/components/esp_phy/CMakeLists.txt b/components/esp_phy/CMakeLists.txt index d5ee7d40882..2d6d1c5a746 100644 --- a/components/esp_phy/CMakeLists.txt +++ b/components/esp_phy/CMakeLists.txt @@ -92,7 +92,6 @@ if(CONFIG_ESP_PHY_ENABLED) # Decide which libraries to link based on the configuration and the target set(has_libbttestmode 0) set(has_librftest 0) - set(has_librfate 0) set(has_libphy 0) set(has_libbtbb 0) set(has_librtc 0) @@ -103,11 +102,9 @@ if(CONFIG_ESP_PHY_ENABLED) set(has_librftest 1) elseif(CONFIG_IDF_TARGET_ESP32S2) set(has_librftest 1) - set(has_librfate 1) else() set(has_libbttestmode 1) set(has_librftest 1) - set(has_librfate 1) endif() endif() @@ -134,12 +131,6 @@ if(CONFIG_ESP_PHY_ENABLED) list(APPEND libs_to_link esp_phy_librftest) endif() - if(has_librfate) - add_prebuilt_library(esp_phy_librfate "${lib_dir}/librfate.a" - REQUIRES ${COMPONENT_NAME}) - list(APPEND libs_to_link esp_phy_librfate) - endif() - if(has_libbtbb) add_prebuilt_library(esp_phy_libbtbb "${lib_dir}/libbtbb.a" REQUIRES ${COMPONENT_NAME})