From 58b0fcde36eb27b5356291be8ab2ea6b009e3508 Mon Sep 17 00:00:00 2001 From: zhangwenxu Date: Tue, 29 Aug 2023 18:28:29 +0800 Subject: [PATCH] bugfix(esp_phy): fix using wrong macro --- components/esp_phy/src/phy_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_phy/src/phy_common.c b/components/esp_phy/src/phy_common.c index b71b3aa0e8..c4824841c7 100644 --- a/components/esp_phy/src/phy_common.c +++ b/components/esp_phy/src/phy_common.c @@ -15,7 +15,7 @@ static volatile int64_t s_previous_timestamp; static void phy_track_pll_timer_callback(void* arg) { -#if IEEE802154_ENABLED || BT_ENABLED +#if CONFIG_IEEE802154_ENABLED || CONFIG_BT_ENABLED bt_track_pll_cap(); #endif s_previous_timestamp = esp_timer_get_time();