mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-30 19:19:21 +00:00
components/esp_wifi: improve coexistence performance according to specific WiFi/BT/BLE scienario
1. Improve WiFi throughput in some Classic BT scienarios(idle, inquire scan, connected, sniff, a2dp pause, etc). 2. Support WiFi + Classic BT + BLE mesh coexistence scienario. 3. Improve WiFi scan and connect succeed ratio in coexistence scienario. 4. Do not support to choose software coexistence preference anymore for it is determined according to coexistence scienario automatically. components/lwip: increase TCP send buffer and receive window limitation when TCP window scale is enabled components/ble_mesh: Fix some bugs about ble mesh 1. fix send acl pkt after ble have sent terminate ind modify min adv interval to 10ms.
This commit is contained in:
@@ -344,7 +344,8 @@ menu "LWIP"
|
||||
config LWIP_TCP_SND_BUF_DEFAULT
|
||||
int "Default send buffer size"
|
||||
default 5744 # 4 * default MSS
|
||||
range 2440 65535
|
||||
range 2440 65535 if !LWIP_WND_SCALE
|
||||
range 2440 1024000 if LWIP_WND_SCALE
|
||||
help
|
||||
Set default send buffer size for new TCP sockets.
|
||||
|
||||
@@ -360,7 +361,8 @@ menu "LWIP"
|
||||
config LWIP_TCP_WND_DEFAULT
|
||||
int "Default receive window size"
|
||||
default 5744 # 4 * default MSS
|
||||
range 2440 65535
|
||||
range 2440 65535 if !LWIP_WND_SCALE
|
||||
range 2440 1024000 if LWIP_WND_SCALE
|
||||
help
|
||||
Set default TCP receive window size for new TCP sockets.
|
||||
|
||||
|
Reference in New Issue
Block a user