Merge branch 'bugfix/update_wifi_lib_to_include_some_fix_and_optimization' into 'master'

esp32: update wifi lib for some fixes and optimizations

1. Reduce the default static rx buffer size from 25 to 10
2. Adjust ampdu interrupt size to 3, namely, raise 1 interrupt per 3-mpdu
3. Make a copy for all received packets, including AMSDU/AMPDU/MPDU
4. Fix softap mis-forward issue
5. Fix pp q full issue
6. Fix sniffer copy wrong content issue

See merge request !491
This commit is contained in:
Jiang Jiang Jian
2017-02-13 21:22:43 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -495,7 +495,7 @@ config ESP32_WIFI_RX_BUFFER_NUM
int "Max number of WiFi RX buffers" int "Max number of WiFi RX buffers"
depends on WIFI_ENABLED depends on WIFI_ENABLED
range 2 25 range 2 25
default 25 default 10
help help
Set the number of WiFi rx buffers. Each buffer takes approximately 1.6KB of RAM. Set the number of WiFi rx buffers. Each buffer takes approximately 1.6KB of RAM.
Larger number for higher throughput but more memory. Smaller number for lower Larger number for higher throughput but more memory. Smaller number for lower