Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e7a2759

Browse filesBrowse files
authored
Allow STA SSID length of 32
Fixes: espressif#3218
1 parent 2ee66b5 commit e7a2759
Copy full SHA for e7a2759

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎libraries/WiFi/src/WiFiSTA.cpp

Copy file name to clipboardExpand all lines: libraries/WiFi/src/WiFiSTA.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ wl_status_t WiFiSTAClass::begin(const char* ssid, const char *passphrase, int32_
121121
return WL_CONNECT_FAILED;
122122
}
123123

124-
if(!ssid || *ssid == 0x00 || strlen(ssid) > 31) {
124+
if(!ssid || *ssid == 0x00 || strlen(ssid) > 32) {
125125
log_e("SSID too long or missing!");
126126
return WL_CONNECT_FAILED;
127127
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.