Fix wifi SSID length to 33 since the maximum chars for SSID is 32 but the string is null terminated so array size must be 33
This commit is contained in:
parent
503e66a500
commit
608f56ebf4
4 changed files with 6 additions and 6 deletions
|
@ -11,7 +11,7 @@ extern "C" {
|
|||
#endif
|
||||
|
||||
struct sdk_softap_config {
|
||||
uint8_t ssid[32];
|
||||
uint8_t ssid[33];
|
||||
uint8_t password[64];
|
||||
uint8_t ssid_len;
|
||||
uint8_t channel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue