esp_wifi: remove wifi tx buffer limits
This commit is contained in:
parent
b1cb127e61
commit
9e45c3c7d8
2 changed files with 4 additions and 5 deletions
|
@ -14,8 +14,7 @@ menu "Wi-Fi"
|
||||||
|
|
||||||
config ESP32_WIFI_STATIC_RX_BUFFER_NUM
|
config ESP32_WIFI_STATIC_RX_BUFFER_NUM
|
||||||
int "Max number of WiFi static RX buffers"
|
int "Max number of WiFi static RX buffers"
|
||||||
range 2 25 if !SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
range 2 25
|
||||||
range 8 25 if SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
|
||||||
default 10 if !SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
default 10 if !SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
||||||
default 16 if SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
default 16 if SPIRAM_TRY_ALLOCATE_WIFI_LWIP
|
||||||
help
|
help
|
||||||
|
@ -79,7 +78,7 @@ menu "Wi-Fi"
|
||||||
config ESP32_WIFI_STATIC_TX_BUFFER_NUM
|
config ESP32_WIFI_STATIC_TX_BUFFER_NUM
|
||||||
int "Max number of WiFi static TX buffers"
|
int "Max number of WiFi static TX buffers"
|
||||||
depends on ESP32_WIFI_STATIC_TX_BUFFER
|
depends on ESP32_WIFI_STATIC_TX_BUFFER
|
||||||
range 6 64
|
range 1 64
|
||||||
default 16
|
default 16
|
||||||
help
|
help
|
||||||
Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.
|
Set the number of WiFi static TX buffers. Each buffer takes approximately 1.6KB of RAM.
|
||||||
|
@ -94,7 +93,7 @@ menu "Wi-Fi"
|
||||||
config ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM
|
config ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM
|
||||||
int "Max number of WiFi dynamic TX buffers"
|
int "Max number of WiFi dynamic TX buffers"
|
||||||
depends on ESP32_WIFI_DYNAMIC_TX_BUFFER
|
depends on ESP32_WIFI_DYNAMIC_TX_BUFFER
|
||||||
range 16 128
|
range 1 128
|
||||||
default 32
|
default 32
|
||||||
help
|
help
|
||||||
Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,
|
Set the number of WiFi dynamic TX buffers. The size of each dynamic TX buffer is not fixed,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 0aeef7c0a997dbc87ee93da389a5b47ef3507392
|
Subproject commit 22cf9a776a246166d83fd4839d79c6eb65ac726d
|
Loading…
Reference in a new issue