mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 21:54:33 +02:00
esp_wifi: Update wifi libs
PMF capable flag in wifi_pmf_config_t is internally enabled, for devices to be able to connect to WPA3 only AP's without additional user configuration. But PMF may need to be disabled for debug purposes or to avoid PMF issues on AP side. Add API esp_wifi_disable_pmf_config to support this.
This commit is contained in:
@@ -1293,6 +1293,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);
|
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
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Submodule components/esp_wifi/lib updated: 100f0729f0...5cac153758
Reference in New Issue
Block a user