Lines Matching refs:RX
9 int "Max number of WiFi static RX buffers"
15 Set the number of WiFi static RX buffers. Each buffer takes approximately 1.6KB of RAM.
25 int "Max number of WiFi dynamic RX buffers"
30 … Set the number of WiFi dynamic RX buffers, 0 means unlimited RX buffers will be allocated
31 … (provided sufficient free RAM). The size of each dynamic RX buffer depends on the size of
34 … For each received data frame, the WiFi driver makes a copy to an RX buffer and then delivers
35 … it to the high layer TCP/IP stack. The dynamic RX buffer is freed after the higher layer has
39 … process them. In these cases we may run out of memory if RX buffer number is unlimited (0).
41 … If a dynamic RX buffer limit is set, it should be at least the number of static RX buffers.
79 … The static RX buffers are allocated when esp_wifi_init() is called, they are not released
115 prompt "Type of WiFi RX MGMT buffers"
118 Select type of WiFi RX MGMT buffers:
120 … If "Static" is selected, WiFi RX MGMT buffers are allocated when WiFi is initialized and released
121 … when WiFi is de-initialized. The size of each static RX MGMT buffer is fixed to about 500 Bytes.
123 …If "Dynamic" is selected, each WiFi RX MGMT buffer is allocated as needed when a MGMT data frame is
139 int "Max number of WiFi RX MGMT buffers"
177 bool "WiFi AMPDU RX"
180 Select this option to enable AMPDU RX feature
183 int "WiFi AMPDU RX BA window size"
190 …Set the size of WiFi Block Ack RX window. Generally a bigger value means higher throughput and bet…
192 … reason, e.g. test the maximum UDP RX throughput with iperf etc. For iperf test in shieldbox, the
274 bool "WiFi RX IRAM speed optimization"
278 Select this option to place frequently called Wi-Fi library RX functions in IRAM.