We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36ae256 commit 19ac0f6Copy full SHA for 19ac0f6
ports/esp32/modsmartconfig.c
@@ -26,7 +26,7 @@ static bool smartconfig_process_done = false;
26
static uint8_t ssid[33] = {0};
27
static uint8_t bssid[6] = {0};
28
static uint8_t password[65] = {0};
29
-static uint8_t v2_data[33] = {0};
+static uint8_t v2_data[65] = {0};
30
31
// smartconfig settings variables
32
static int8_t type = SC_TYPE_ESPTOUCH_AIRKISS;
@@ -127,7 +127,7 @@ static void smartconfig_init(void) {
127
memset(ssid, 0, sizeof(ssid));
128
memset(bssid, 0, sizeof(bssid));
129
memset(password, 0, sizeof(password));
130
- memset(v2_data, 0, sizeof(v2_data));
+ memset(v2_data, 0, sizeof(v2_data));
131
132
wifi_event_group = xEventGroupCreate();
133
0 commit comments