ESP32-S3 super slow download speed (basd on wifi_embassy_bench
)
#2702
-
I got a ESP32-S3 from AliExpress (maybe this is why). I got
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The default settings are quite conservative, but you can change settings to optimize for throughput See https://docs.esp-rs.org/esp-hal/esp-wifi/0.11.0/esp32s3/esp_wifi/#additional-configuration for what you can change. You need to experiment and benchmark but settings like this should make a difference: rx_queue_size = 20 |
Beta Was this translation helpful? Give feedback.
The default settings are quite conservative, but you can change settings to optimize for throughput
See https://docs.esp-rs.org/esp-hal/esp-wifi/0.11.0/esp32s3/esp_wifi/#additional-configuration for what you can change.
You need to experiment and benchmark but settings like this should make a difference:
rx_queue_size = 20
tx_queue_size = 5
static_rx_buf_num = 32
dynamic_rx_buf_num = 16
ampdu_rx_enable = 1
ampdu_tx_enable = 1
rx_ba_win = 32
max_burst_size = 8