You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Protocol selection could be implemented in "arduino\libraries\WiFi\src\WiFi.cpp" with additional call to esp_wifi_set_protocol, e.g.: uint8_t band = WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N; esp_wifi_set_protocol(_interface, band);
before the esp_wifi_start(); is invoked.
However, currently it is not possible to force ESP-IDF to use G specific protocol.
Only three options 802.11b, 802.11b/g or 802.11b/g/n are supported and neither of them is pure 802.11g.
Based on the issue count of espressif the bad news is that you should not expect this feature to be implemented anytime soon.
Furthermore if your AP works only with higher (>802.11b) data rates the ESP-IDF will still try to send some low-rate junk (of 802.11b protocol) over the air.
Offtopic - I'm just suprised how boldly and irresponsiblyu-blox selected the cheapest so-incomplete espressif WiFi solution for the NINA devices.
Hi, I am troubleshooting a problem with 802.11n. Is it possible to force the module to use 802.11g only somehow?
The text was updated successfully, but these errors were encountered: