mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 05:34:32 +02:00
Merge branch 'feat/dynamic_carrier_sense' into 'master'
esp_wifi: add dynamic carrier sense threshold to improve tx throughput in high interference env and fix tx fragment issue Closes WIFI-5106 and WIFI-5529 See merge request espressif/esp-idf!21919
This commit is contained in:
@@ -1348,6 +1348,19 @@ esp_err_t esp_wifi_sta_get_aid(uint16_t *aid);
|
||||
*/
|
||||
esp_err_t esp_wifi_sta_get_negotiated_phymode(wifi_phy_mode_t *phymode);
|
||||
|
||||
/**
|
||||
* @brief Config dynamic carrier sense
|
||||
*
|
||||
* @attention This API should be called after esp_wifi_start().
|
||||
*
|
||||
* @param enabled Dynamic carrier sense is enabled or not.
|
||||
*
|
||||
* @return
|
||||
* - ESP_OK: succeed
|
||||
* - others: failed
|
||||
*/
|
||||
esp_err_t esp_wifi_set_dynamic_cs(bool enabled);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Submodule components/esp_wifi/lib updated: a821d6aef8...bdaf43e3da
Reference in New Issue
Block a user