mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(CI): fix CI build
This commit is contained in:
parent
f0a4aa4760
commit
ee087e91c2
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@ -937,7 +937,7 @@ static void btdm_sleep_enter_phase1_wrapper(uint32_t lpcycles)
|
||||
static void btdm_sleep_enter_phase2_wrapper(void)
|
||||
{
|
||||
if (btdm_controller_get_sleep_mode() == BTDM_MODEM_SLEEP_MODE_ORIG) {
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
#ifdef CONFIG_PM_ENABLE
|
||||
if (s_pm_lock_acquired) {
|
||||
esp_pm_lock_release(s_pm_lock);
|
||||
@ -945,7 +945,7 @@ static void btdm_sleep_enter_phase2_wrapper(void)
|
||||
}
|
||||
#endif
|
||||
} else if (btdm_controller_get_sleep_mode() == BTDM_MODEM_SLEEP_MODE_EVED) {
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
// pause bluetooth baseband
|
||||
periph_module_disable(PERIPH_BT_BASEBAND_MODULE);
|
||||
}
|
||||
@ -961,7 +961,7 @@ static void btdm_sleep_exit_phase3_wrapper(void)
|
||||
#endif
|
||||
|
||||
if (btdm_controller_get_sleep_mode() == BTDM_MODEM_SLEEP_MODE_ORIG) {
|
||||
esp_phy_enable();
|
||||
esp_phy_enable(PHY_MODEM_BT);
|
||||
btdm_check_and_init_bb();
|
||||
#ifdef CONFIG_PM_ENABLE
|
||||
esp_timer_stop(s_btdm_slp_tmr);
|
||||
@ -969,7 +969,7 @@ static void btdm_sleep_exit_phase3_wrapper(void)
|
||||
} else if (btdm_controller_get_sleep_mode() == BTDM_MODEM_SLEEP_MODE_EVED) {
|
||||
// resume bluetooth baseband
|
||||
periph_module_enable(PERIPH_BT_BASEBAND_MODULE);
|
||||
esp_phy_enable();
|
||||
esp_phy_enable(PHY_MODEM_BT);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1641,7 +1641,7 @@ static void bt_shutdown(void)
|
||||
#else
|
||||
bt_controller_shutdown(NULL);
|
||||
#endif
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
|
||||
return;
|
||||
}
|
||||
@ -1667,7 +1667,7 @@ esp_err_t esp_bt_controller_enable(esp_bt_mode_t mode)
|
||||
esp_pm_lock_acquire(s_pm_lock);
|
||||
#endif
|
||||
|
||||
esp_phy_enable();
|
||||
esp_phy_enable(PHY_MODEM_BT);
|
||||
|
||||
#if CONFIG_SW_COEXIST_ENABLE
|
||||
coex_enable();
|
||||
@ -1685,7 +1685,7 @@ esp_err_t esp_bt_controller_enable(esp_bt_mode_t mode)
|
||||
#if CONFIG_SW_COEXIST_ENABLE
|
||||
coex_disable();
|
||||
#endif
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
#ifdef CONFIG_PM_ENABLE
|
||||
if (!s_btdm_allow_light_sleep) {
|
||||
esp_pm_lock_release(s_light_sleep_pm_lock);
|
||||
@ -1725,7 +1725,7 @@ esp_err_t esp_bt_controller_disable(void)
|
||||
coex_disable();
|
||||
#endif
|
||||
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
btdm_controller_status = ESP_BT_CONTROLLER_STATUS_INITED;
|
||||
esp_unregister_shutdown_handler(bt_shutdown);
|
||||
|
||||
|
@ -747,7 +747,7 @@ static void btdm_sleep_enter_phase2_wrapper(void)
|
||||
{
|
||||
if (btdm_controller_get_sleep_mode() == ESP_BT_SLEEP_MODE_1) {
|
||||
if (s_lp_stat.phy_enabled) {
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
s_lp_stat.phy_enabled = 0;
|
||||
} else {
|
||||
assert(0);
|
||||
@ -776,7 +776,7 @@ static void btdm_sleep_exit_phase3_wrapper(void)
|
||||
|
||||
if (btdm_controller_get_sleep_mode() == ESP_BT_SLEEP_MODE_1) {
|
||||
if (s_lp_stat.phy_enabled == 0) {
|
||||
esp_phy_enable();
|
||||
esp_phy_enable(PHY_MODEM_BT);
|
||||
s_lp_stat.phy_enabled = 1;
|
||||
}
|
||||
}
|
||||
@ -1442,7 +1442,7 @@ esp_err_t esp_bt_controller_enable(esp_bt_mode_t mode)
|
||||
/* Enable PHY when enabling controller to reduce power dissipation after controller init
|
||||
* Notice the init order: esp_phy_enable() -> bt_bb_v2_init_cmplx() -> coex_pti_v2()
|
||||
*/
|
||||
esp_phy_enable();
|
||||
esp_phy_enable(PHY_MODEM_BT);
|
||||
s_lp_stat.phy_enabled = 1;
|
||||
|
||||
#if CONFIG_SW_COEXIST_ENABLE
|
||||
@ -1494,7 +1494,7 @@ error:
|
||||
coex_disable();
|
||||
#endif
|
||||
if (s_lp_stat.phy_enabled) {
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
s_lp_stat.phy_enabled = 0;
|
||||
}
|
||||
return ret;
|
||||
@ -1516,7 +1516,7 @@ esp_err_t esp_bt_controller_disable(void)
|
||||
coex_disable();
|
||||
#endif
|
||||
if (s_lp_stat.phy_enabled) {
|
||||
esp_phy_disable();
|
||||
esp_phy_disable(PHY_MODEM_BT);
|
||||
s_lp_stat.phy_enabled = 0;
|
||||
}
|
||||
|
||||
|
@ -269,18 +269,6 @@ esp_err_t esp_phy_apply_phy_init_data(uint8_t *init_data);
|
||||
*/
|
||||
char * get_phy_version_str(void);
|
||||
|
||||
/**
|
||||
* @brief Enable phy track pll
|
||||
*
|
||||
*/
|
||||
void phy_track_pll_init(void);
|
||||
|
||||
/**
|
||||
* @brief Disable phy track pll
|
||||
*
|
||||
*/
|
||||
void phy_track_pll_deinit(void);
|
||||
|
||||
/**
|
||||
* @brief Set PHY init parameters
|
||||
* @param param is 1 means combo module
|
||||
@ -289,15 +277,10 @@ void phy_init_param_set(uint8_t param);
|
||||
|
||||
/**
|
||||
* @brief Wi-Fi RX enable
|
||||
* @param enable True for enable wifi receiving mode as default, false for closing wifi receiving mode as default.
|
||||
*/
|
||||
void phy_wifi_enable_set(uint8_t enable);
|
||||
|
||||
/**
|
||||
* @brief PHY temperature track
|
||||
*/
|
||||
void phy_param_track_tot(bool en_wifi, bool en_bt_154);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
@ -12,8 +12,12 @@ static volatile uint16_t s_phy_modem_flag = 0;
|
||||
|
||||
extern void phy_param_track_tot(bool en_wifi, bool en_ble_154);
|
||||
static esp_timer_handle_t phy_track_pll_timer;
|
||||
#if CONFIG_WIFI_ENABLED
|
||||
static volatile int64_t s_wifi_prev_timestamp;
|
||||
#endif
|
||||
#if CONFIG_IEEE802154_ENABLED || CONFIG_BT_ENABLED
|
||||
static volatile int64_t s_bt_154_prev_timestamp;
|
||||
#endif
|
||||
#define PHY_TRACK_PLL_PERIOD_IN_US 1000000
|
||||
|
||||
#if CONFIG_IEEE802154_ENABLED || CONFIG_BT_ENABLED || CONFIG_WIFI_ENABLED
|
||||
|
@ -46,9 +46,15 @@ static void test_phy_rtc_init(void)
|
||||
ret = nvs_flash_init();
|
||||
}
|
||||
TEST_ESP_OK(ret);
|
||||
|
||||
esp_phy_enable();
|
||||
|
||||
#if CONFIG_WIFI_ENABLED
|
||||
esp_phy_enable(PHY_MODEM_WIFI);
|
||||
#endif
|
||||
#if CONFIG_BT_ENABLED
|
||||
esp_phy_enable(PHY_MODEM_BT);
|
||||
#endif
|
||||
#if CONFIG_IEEE802154_ENABLED
|
||||
esp_phy_enable(PHY_MODEM_IEEE802154);
|
||||
#endif
|
||||
//must run here, not blocking in above code
|
||||
TEST_ASSERT(1);
|
||||
nvs_flash_deinit();
|
||||
|
@ -31,7 +31,6 @@ static void initialize_nvs(void)
|
||||
void app_main(void)
|
||||
{
|
||||
esp_ieee802154_enable();
|
||||
esp_phy_enable();
|
||||
esp_console_repl_t *repl = NULL;
|
||||
esp_console_repl_config_t repl_config = ESP_CONSOLE_REPL_CONFIG_DEFAULT();
|
||||
/* Prompt to be printed before each line.
|
||||
|
Loading…
Reference in New Issue
Block a user