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 903f559 commit d3bf6a6Copy full SHA for d3bf6a6
Firmware/RTK_Everywhere/Network.ino
@@ -1037,6 +1037,9 @@ const char * networkTypeToString(uint8_t type)
1037
//----------------------------------------
1038
void networkTypeUpdate(uint8_t networkType)
1039
{
1040
+ if(inWiFiConfigMode())
1041
+ return; //Avoid network layer while in Browser Config Mode
1042
+
1043
char errorMsg[64];
1044
NETWORK_DATA *network;
1045
Firmware/RTK_Everywhere/States.ino
@@ -421,6 +421,7 @@ void stateUpdate()
421
422
displayWiFiConfigNotStarted(); // Display immediately during SD cluster pause
423
424
+ WIFI_STOP(); //Notify the network layer that it should stop so we can take over control of WiFi
425
bluetoothStop();
426
espnowStop();
427
0 commit comments