File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
/* ------------------------------------------------------------------------------
2
- Form .ino
2
+ WebServer .ino
3
3
4
4
Start and stop the web-server, provide the form and handle browser input.
5
5
------------------------------------------------------------------------------*/
@@ -1465,4 +1465,11 @@ void handleUpload()
1465
1465
}
1466
1466
}
1467
1467
1468
+ // Verify the web server tables
1469
+ void webServerVerifyTables ()
1470
+ {
1471
+ if (webServerStateEntries != WEBSERVER_STATE_MAX)
1472
+ reportFatalError (" Fix webServerStateNames to match WebServerState" );
1473
+ }
1474
+
1468
1475
#endif // COMPILE_AP
Original file line number Diff line number Diff line change @@ -721,6 +721,7 @@ void verifyTables()
721
721
provisioningVerifyTables ();
722
722
mosaicVerifyTables ();
723
723
correctionVerifyTables ();
724
+ webServerVerifyTables ();
724
725
725
726
if (correctionsSource::CORR_NUM >= (int )(' x' - ' a' ))
726
727
reportFatalError (" Too many correction sources" );
You can’t perform that action at this time.
0 commit comments