mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-29 18:27:20 +02:00
Merge branch 'bugfix/multiple_wifi_fixes_v4.3' into 'release/v4.3'
esp_wifi: backport some wifi bug fixes to v4.3 See merge request espressif/esp-idf!21467
This commit is contained in:
@ -1733,7 +1733,7 @@ ieee80211_recycle_cache_eb = 0x4000188c;
|
||||
ieee80211_search_node = 0x40001890;
|
||||
roundup2 = 0x40001894;
|
||||
ieee80211_crypto_encap = 0x40001898;
|
||||
ieee80211_crypto_decap = 0x4000189c;
|
||||
/* ieee80211_crypto_decap = 0x4000189c; */
|
||||
/* ieee80211_decap = 0x400018a0; */
|
||||
ieee80211_set_tx_pti = 0x400018a4;
|
||||
wifi_is_started = 0x400018a8;
|
||||
|
@ -282,6 +282,7 @@ typedef struct {
|
||||
uint32_t btm_enabled:1; /**< Whether BSS Transition Management is enabled for the connection */
|
||||
uint32_t reserved:30; /**< Reserved for future feature set */
|
||||
wifi_sae_pwe_method_t sae_pwe_h2e; /**< Whether SAE hash to element is enabled */
|
||||
uint8_t failure_retry_cnt; /**< Number of connection retries station will do before moving to next AP. scan_method should be set as WIFI_ALL_CHANNEL_SCAN to use this config. Note: Enabling this may cause connection time to increase incase best AP doesn't behave properly. */
|
||||
} wifi_sta_config_t;
|
||||
|
||||
/** @brief Configuration data for ESP32 AP or STA.
|
||||
|
Submodule components/esp_wifi/lib updated: 5596acc7bc...f949345782
Reference in New Issue
Block a user