diff --git a/components/driver/rtc_module.c b/components/driver/rtc_module.c index 43794a0ce..2c505f9cc 100644 --- a/components/driver/rtc_module.c +++ b/components/driver/rtc_module.c @@ -1506,7 +1506,6 @@ esp_err_t adc1_adc_mode_acquire() //lazy initialization //for adc1, block until acquire the lock _lock_acquire( &adc1_i2s_lock ); - ESP_LOGD( RTC_MODULE_TAG, "adc mode takes adc1 lock." ); portENTER_CRITICAL(&rtc_spinlock); // for now the WiFi would use ADC2 and set xpd_sar force on. // so we can not reset xpd_sar to fsm mode directly. @@ -1526,7 +1525,6 @@ esp_err_t adc1_lock_release() // We should handle this after the synchronization mechanism is established. _lock_release( &adc1_i2s_lock ); - ESP_LOGD( RTC_MODULE_TAG, "returns adc1 lock." ); return ESP_OK; } diff --git a/components/esp32/phy_init.c b/components/esp32/phy_init.c index 18b3fa8b4..cf122ae26 100644 --- a/components/esp32/phy_init.c +++ b/components/esp32/phy_init.c @@ -97,7 +97,6 @@ static inline void phy_update_wifi_mac_time(bool en_clock_stopped, int64_t now) s_wifi_mac_time_update_cb(diff); } s_common_clock_disable_time = 0; - ESP_LOGD(TAG, "wifi mac time delta: %u", diff); } } }