802.11 rx buffer and promiscuous mode
Posted: Sun Apr 03, 2022 2:58 pm
When I set esp to promiscuous mode and analyze each packet that esp get...
What is that buffer size of rx? I guess that I drop packet if I didn't analyze them fast...
And,when esp in promiscuous mode, does it disable to tx WIFI? Because I want to save battery as much as I can
Thank you!
Code: Select all
esp_wifi_start();
esp_wifi_set_promiscuous(true); esp_wifi_set_promiscuous_rx_cb(&wifi_sniffer_packet_handler);
What is that buffer size of rx? I guess that I drop packet if I didn't analyze them fast...
And,when esp in promiscuous mode, does it disable to tx WIFI? Because I want to save battery as much as I can
Thank you!