From f36a31723a44d2c1ea2bf20e94e269e90e3072d0 Mon Sep 17 00:00:00 2001 From: Thomas Basler Date: Mon, 27 Feb 2023 14:32:55 +0100 Subject: [PATCH] Fix #636: Allow full SSID length of 32 characters --- include/Configuration.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Configuration.h b/include/Configuration.h index ab1eba39..8b9e75a1 100644 --- a/include/Configuration.h +++ b/include/Configuration.h @@ -6,7 +6,7 @@ #define CONFIG_FILENAME "/config.json" #define CONFIG_VERSION 0x00011800 // 0.1.24 // make sure to clean all after change -#define WIFI_MAX_SSID_STRLEN 31 +#define WIFI_MAX_SSID_STRLEN 32 #define WIFI_MAX_PASSWORD_STRLEN 64 #define WIFI_MAX_HOSTNAME_STRLEN 31