esp32/lwip: adjust some lwip options and update wifi lib
1. Modify TCP TX window from 2 to 4 2. Modify TCPIP task stack default size from 2048 to 2560 3. Update wifi lib for TCP performance optimization
This commit is contained in:
@@ -670,7 +670,7 @@
|
||||
#define ESP_LWIP_LOGI(...) ESP_LOGI("lwip", __VA_ARGS__)
|
||||
|
||||
#define TCP_WND_DEFAULT (4*TCP_MSS)
|
||||
#define TCP_SND_BUF_DEFAULT (2*TCP_MSS)
|
||||
#define TCP_SND_BUF_DEFAULT (4*TCP_MSS)
|
||||
|
||||
#if ESP_PERF
|
||||
#define DBG_PERF_PATH_SET(dir, point)
|
||||
|
||||
Reference in New Issue
Block a user