fix(bt): Move esp_wifi_bt_power_domain_on/off to esp_phy_init.h

This commit is contained in:
xiongweichao
2024-11-05 19:24:42 +08:00
committed by Xiong Wei Chao
parent e422e12f17
commit 91c2390897
7 changed files with 38 additions and 24 deletions

View File

@@ -304,6 +304,16 @@ esp_err_t phy_query_used_time(uint64_t *used_time, esp_phy_modem_t modem);
esp_err_t phy_clear_used_time(esp_phy_modem_t modem);
#endif
/**
* @brief Power on Bluetooth Wi-Fi power domain
*/
void esp_wifi_bt_power_domain_on(void);
/**
* @brief Power off Bluetooth Wi-Fi power domain
*/
void esp_wifi_bt_power_domain_off(void);
#ifdef __cplusplus
}
#endif