Skip to content

Commit

Permalink
Merge branch 'bugfix/scan_mixed_keymgmt_issue_v4.4' into 'release/v4.4'
Browse files Browse the repository at this point in the history
Combined fix for scan issue and PMF disable API (Backport v4.4)

See merge request espressif/esp-idf!17743
  • Loading branch information
jack0c committed Apr 26, 2022
2 parents 36823b4 + c4c8aab commit 75e50e9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions components/esp_wifi/include/esp_wifi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 75e50e9

Please sign in to comment.