diff --git a/components/esp_hw_support/sleep_modes.c b/components/esp_hw_support/sleep_modes.c index 9f8b25b3c2..3bb94ad613 100644 --- a/components/esp_hw_support/sleep_modes.c +++ b/components/esp_hw_support/sleep_modes.c @@ -438,6 +438,10 @@ static uint32_t IRAM_ATTR esp_sleep_start(uint32_t pd_flags) if (esp_phy_is_initialized()){ extern void phy_close_rf(void); phy_close_rf(); +#if !CONFIG_IDF_TARGET_ESP32 + extern void phy_xpd_tsens(void); + phy_xpd_tsens(); +#endif } } else { misc_modules_sleep_prepare();