From ec90a27e7e666d3dfe3129783c5fe4b21d45ed56 Mon Sep 17 00:00:00 2001 From: luc lebosse Date: Thu, 24 Nov 2016 15:38:02 +0100 Subject: [PATCH] Space do not generate error anymore so remove the limitation thanks @szepnorbee for the feedback --- esp3d/config.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/esp3d/config.cpp b/esp3d/config.cpp index 3129a38a..f6f27a55 100644 --- a/esp3d/config.cpp +++ b/esp3d/config.cpp @@ -70,9 +70,9 @@ bool CONFIG::isSSIDValid(const char * ssid) for (int i=0; i < strlen(ssid); i++) { c = ssid[i]; //if (!(isdigit(c) || isalpha(c))) return false; - if (c==' ') { - return false; - } + //if (c==' ') { + // return false; + //} } return true; }