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 d66c96d commit f520466Copy full SHA for f520466
Firmware/RTK_Everywhere/WebServer.ino
@@ -1335,6 +1335,8 @@ static esp_err_t ws_handler(httpd_req_t *req)
1335
for (int i = 0; i < ws_pkt.len; i++)
1336
{
1337
incomingSettings[incomingSettingsSpot++] = ws_pkt.payload[i];
1338
+ if (incomingSettingsSpot == AP_CONFIG_SETTING_SIZE)
1339
+ systemPrintln("incomingSettings wrap-around. Increase AP_CONFIG_SETTING_SIZE");
1340
incomingSettingsSpot %= AP_CONFIG_SETTING_SIZE;
1341
}
1342
timeSinceLastIncomingSetting = millis();
0 commit comments