From 89f21077fc6220de9df14e79440db485d2b52e56 Mon Sep 17 00:00:00 2001 From: Advaith Menon Date: Sun, 30 Nov 2025 23:27:48 -0500 Subject: [PATCH] Increase Wi-Fi SSID/Password Limit * Allow longer Wi-Fi names upto 32 chars and password to 64 chars. This allows using names like: WhiteSky-UNCChapelHill _ATL-Free-Wifi-5G --- main/task_wifi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/task_wifi.c b/main/task_wifi.c index c40c657..03ccad7 100644 --- a/main/task_wifi.c +++ b/main/task_wifi.c @@ -22,8 +22,8 @@ #include "task_wifi.h" -#define WIFI_SSID_SIZE 16 -#define WIFI_PASS_SIZE 32 +#define WIFI_SSID_SIZE 32 +#define WIFI_PASS_SIZE 64 #define RTC_UPDATE_TIME 600 -- 2.47.3