mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
improve wifi contention ability and optimize coex slice
This commit is contained in:
@ -1063,6 +1063,16 @@ esp_err_t esp_wifi_set_ant(const wifi_ant_config_t *config);
|
|||||||
*/
|
*/
|
||||||
esp_err_t esp_wifi_get_ant(wifi_ant_config_t *config);
|
esp_err_t esp_wifi_get_ant(wifi_ant_config_t *config);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Improve WiFi transmitting contention ability.
|
||||||
|
*
|
||||||
|
* @param enable If enable is true, improve WiFi transmitting contention ability.
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
* - ESP_OK: succeed
|
||||||
|
*/
|
||||||
|
esp_err_t esp_wifi_improve_contention_ability(bool enable);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Submodule components/esp32/lib updated: 72ffbfbdf7...d77d0a481d
@ -318,7 +318,8 @@ menu "LWIP"
|
|||||||
config TCP_WND_DEFAULT
|
config TCP_WND_DEFAULT
|
||||||
int "Default receive window size"
|
int "Default receive window size"
|
||||||
default 5744 # 4 * default MSS
|
default 5744 # 4 * default MSS
|
||||||
range 2440 65535
|
range 2440 65535 if !LWIP_WND_SCALE
|
||||||
|
range 2440 1024000 if LWIP_WND_SCALE
|
||||||
help
|
help
|
||||||
Set default TCP receive window size for new TCP sockets.
|
Set default TCP receive window size for new TCP sockets.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user