From c05bb2bc8a46b5d821c27d39d15e0bfbbe70222c Mon Sep 17 00:00:00 2001 From: majoreffort <41589814+majoreffort@users.noreply.github.com> Date: Sun, 27 Apr 2025 22:58:40 +0200 Subject: [PATCH] Enable WPA3 for static wifi config (#123) --- components/network_interface/wifi_interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/network_interface/wifi_interface.c b/components/network_interface/wifi_interface.c index a325826..b79da67 100644 --- a/components/network_interface/wifi_interface.c +++ b/components/network_interface/wifi_interface.c @@ -253,7 +253,7 @@ void wifi_start(void) { .ssid = WIFI_SSID, .password = WIFI_PASSWORD, .sort_method = WIFI_CONNECT_AP_BY_SIGNAL, - .threshold.authmode = WIFI_AUTH_WPA2_PSK, + .threshold.authmode = WIFI_AUTH_WPA2_WPA3_PSK, .pmf_cfg = {.capable = true, .required = false}, }, };