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:
Alessio Pollero 2021-02-13 18:15:45 +00:00
parent 503e66a500
commit 608f56ebf4
4 changed files with 6 additions and 6 deletions

View file

@ -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;