Skip to content

Commit 1bcea94

Browse files
committed
Add auth names for for future ESP core compatibility
1 parent 3ca4f72 commit 1bcea94

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Firmware/RTK_Everywhere/WiFi.ino

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,18 @@
1515
#define WIFI_CONNECTION_STABLE_MSEC (15 * MILLISECONDS_IN_A_MINUTE)
1616

1717
static const char *wifiAuthorizationName[] = {
18-
"Open", "WEP", "WPA_PSK", "WPA2_PSK", "WPA_WPA2_PSK", "WPA2_Enterprise",
18+
"Open", "WEP", "WPA_PSK", "WPA2_PSK", "WPA_WPA2_PSK", //"ENTERPRISE",
19+
"WPA2_Enterprise",
1920
"WPA3_PSK", "WPA2_WPA3_PSK", "WAPI_PSK", "OWE", "WPA3_ENT_192",
21+
22+
//Compatible with ESP32 core v3.2.1, 16 reported, 18 listed here:
23+
//https://github.com/espressif/esp-idf/blob/master/components/esp_wifi/include/esp_wifi_types_generic.h#L86
24+
//"WPA3_EXT_PSK",
25+
//"WPA3_EXT_PSK_MIXED_MODE",
26+
//"DPP",
27+
//"WPA3_ENTERPRISE",
28+
//"WPA2_WPA3_ENTERPRISE",
29+
//"WPA_ENTERPRISE",
2030
};
2131
static const int wifiAuthorizationNameEntries = sizeof(wifiAuthorizationName) / sizeof(wifiAuthorizationName[0]);
2232

0 commit comments

Comments
 (0)