esp_wifi: fix fail to scan after recv disassoc/deauth for esp32s2

This commit is contained in:
liuning 2022-08-01 17:58:53 +08:00 committed by BOT
parent 74abb42053
commit 73817d8889
3 changed files with 4 additions and 2 deletions

View File

@ -787,6 +787,8 @@ wifi_osi_funcs_t g_wifi_osi_funcs = {
._wifi_apb80m_release = wifi_apb80m_release_wrapper,
._phy_disable = esp_phy_disable,
._phy_enable = esp_phy_enable,
._phy_common_clock_enable = esp_phy_common_clock_enable,
._phy_common_clock_disable = esp_phy_common_clock_disable,
._phy_update_country_info = esp_phy_update_country_info,
._read_mac = esp_read_mac,
._timer_arm = timer_arm_wrapper,

View File

@ -77,7 +77,7 @@ typedef struct {
void (* _wifi_apb80m_release)(void);
void (* _phy_disable)(void);
void (* _phy_enable)(void);
#if CONFIG_IDF_TARGET_ESP32
#if CONFIG_IDF_TARGET_ESP32 || CONFIG_IDF_TARGET_ESP32S2
void (* _phy_common_clock_enable)(void);
void (* _phy_common_clock_disable)(void);
#endif

@ -1 +1 @@
Subproject commit 767ec0f081e8db890dc86cc88cf77d280a20def6
Subproject commit fd23b3bc66102918dd0ce6492997f7cfdd6e86c0