Search found 2 matches
- Fri May 08, 2026 12:50 am
- Forum: ESP-IDF
- Topic: V6.0, the EIM and the legacy installation - for how long?
- Replies: 2
- Views: 160
Re: V6.0, the EIM and the legacy installation - for how long?
I can only agree. EIM looks nothing but meaningless porcelain to me. It adds a deep bad smell on top of the fact that the old manual installation method did not easily allow to bootstrap your own toolchains. EIM is clearly a move in the wrong direction. Its mission statement nobody asked for. Its ...
- Thu Mar 05, 2026 11:38 pm
- Forum: ESP-IDF
- Topic: How to disable WIFI_PROTOCOL_11AX on the ESP32-C5?
- Replies: 0
- Views: 64
How to disable WIFI_PROTOCOL_11AX on the ESP32-C5?
Hi,
I'm trying to disable WiFi-6 for testing on my ESP32-C5.
I tried the following:
wifi_protocols_t protocols;
protocols.ghz_2g = WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N;
protocols.ghz_5g = WIFI_PROTOCOL_11A|WIFI_PROTOCOL_11N|WIFI_PROTOCOL_11AC;
esp_wifi_set_protocols(WIFI_IF_STA ...
I'm trying to disable WiFi-6 for testing on my ESP32-C5.
I tried the following:
wifi_protocols_t protocols;
protocols.ghz_2g = WIFI_PROTOCOL_11B|WIFI_PROTOCOL_11G|WIFI_PROTOCOL_11N;
protocols.ghz_5g = WIFI_PROTOCOL_11A|WIFI_PROTOCOL_11N|WIFI_PROTOCOL_11AC;
esp_wifi_set_protocols(WIFI_IF_STA ...