Skip to content

Commit 0fcc249

Browse files
committed
Remove restart base/rover from WiFi menu
1 parent 1133ee8 commit 0fcc249

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Firmware/RTK_Surveyor/menuSystem.ino

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -410,17 +410,13 @@ void menuWiFi()
410410
{
411411
systemPrintf("Enter SSID network %d: ", arraySlot + 1);
412412
getString(settings.wifiNetworks[arraySlot].ssid, sizeof(settings.wifiNetworks[arraySlot].ssid));
413-
restartRover = true; //If we are modifying the SSID table, force restart of rover/base
414-
restartBase = true;
415-
restartWiFi = true;
413+
restartWiFi = true; //If we are modifying the SSID table, force restart of WiFi
416414
}
417415
else
418416
{
419417
systemPrintf("Enter Password for %s: ", settings.wifiNetworks[arraySlot].ssid);
420418
getString(settings.wifiNetworks[arraySlot].password, sizeof(settings.wifiNetworks[arraySlot].password));
421-
restartRover = true;
422-
restartBase = true;
423-
restartWiFi = true;
419+
restartWiFi = true; //If we are modifying the SSID table, force restart of WiFi
424420
}
425421
}
426422
else if (incoming == 'a')

0 commit comments

Comments
 (0)