mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
esp_wifi: Update wifi lib
1. In scan, correctly identify AP's with mixed key mgmt 2. Add API to disable PMF configuration
This commit is contained in:
parent
d58b394dc5
commit
c4c8aab39d
@ -1295,6 +1295,19 @@ esp_err_t esp_wifi_get_country_code(char *country);
|
||||
*/
|
||||
esp_err_t esp_wifi_config_80211_tx_rate(wifi_interface_t ifx, wifi_phy_rate_t rate);
|
||||
|
||||
/**
|
||||
* @brief Disable PMF configuration for specified interface
|
||||
*
|
||||
* @attention This API should be called after esp_wifi_set_config() and before esp_wifi_start().
|
||||
*
|
||||
* @param ifx Interface to be configured.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: succeed
|
||||
* - others: failed
|
||||
*/
|
||||
esp_err_t esp_wifi_disable_pmf_config(wifi_interface_t ifx);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit 5a0d2aee49633b1a0c0374c2a01ed8c2a10e2fe4
|
||||
Subproject commit 1b0fcf9eeb96ddc4d72ab5850a0bf9e95e289da4
|
Loading…
Reference in New Issue
Block a user