From f69b8bde01b862a2d2aa10e135e3a01ac7f168f4 Mon Sep 17 00:00:00 2001 From: Jack Date: Wed, 22 Jul 2026 11:25:58 +0800 Subject: [PATCH] fix(phy): removed all librfate logic from cmake --- components/esp_phy/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_phy/CMakeLists.txt b/components/esp_phy/CMakeLists.txt index 8787dd9fb94..0c1c06c96a7 100644 --- a/components/esp_phy/CMakeLists.txt +++ b/components/esp_phy/CMakeLists.txt @@ -93,10 +93,10 @@ if(CONFIG_ESP_PHY_ENABLED) librftest.a $) elseif(CONFIG_IDF_TARGET_ESP32S2) target_link_libraries(${COMPONENT_LIB} INTERFACE $ librftest.a - librfate.a $) + $) else() target_link_libraries(${COMPONENT_LIB} INTERFACE $ libbttestmode.a - librfate.a librftest.a $) + librftest.a $) endif() endif()