mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
improve wifi contention ability and optimize coex slice
This commit is contained in:
parent
f5d74b1106
commit
896ba3df56
@ -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
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 72ffbfbdf739f1f5379384e0ceee3565d70f7900
|
Subproject commit d77d0a481db05bd76d58a95506d889e068289170
|
@ -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.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user