From c0466739bafb0c46e7d5956d3c59953a511d7700 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 e0c6a225be1..43918fe4901 100644 --- a/components/esp_phy/CMakeLists.txt +++ b/components/esp_phy/CMakeLists.txt @@ -94,10 +94,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()