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 1faa4f1 commit 2a77f9bCopy full SHA for 2a77f9b
Firmware/RTK_Surveyor/RTK_Surveyor.ino
@@ -318,7 +318,8 @@ AsyncWebSocket ws("/ws");
318
319
//Because the incoming string is longer than max len, there are multiple callbacks so we
320
//use a global to combine the incoming
321
-char incomingSettings[3000];
+#define AP_CONFIG_SETTING_SIZE 3500
322
+char incomingSettings[AP_CONFIG_SETTING_SIZE];
323
int incomingSettingsSpot = 0;
324
unsigned long timeSinceLastIncomingSetting = 0;
325
//=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
0 commit comments