Skip to content

Commit efd0701

Browse files
LeeLeahy2nseidle
authored andcommitted
Move periodic display of WiFi IP address into wifiUpdate
1 parent 26fb8b9 commit efd0701

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

Firmware/RTK_Surveyor/NtripClient.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,9 +473,6 @@ void ntripClientUpdate()
473473
lastNtripClientState = millis();
474474
}
475475

476-
//Periodically display the IP address
477-
wifiPeriodicallyDisplayIpAddress();
478-
479476
//Enable WiFi and the NTRIP client if requested
480477
switch (ntripClientState)
481478
{

Firmware/RTK_Surveyor/NtripServer.ino

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,9 +435,6 @@ void ntripServerUpdate()
435435
ntripServerStateLastDisplayed = millis();
436436
}
437437

438-
//Periodically display the IP address
439-
wifiPeriodicallyDisplayIpAddress();
440-
441438
//Enable WiFi and the NTRIP server if requested
442439
switch (ntripServerState)
443440
{

Firmware/RTK_Surveyor/WiFi.ino

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,9 @@ void wifiUpdate()
237237
lastWifiState = millis();
238238
}
239239

240+
//Periodically display the IP address
241+
wifiPeriodicallyDisplayIpAddress();
242+
240243
//Support NTRIP client during Rover operation
241244
if (systemState < STATE_BASE_NOT_STARTED)
242245
ntripClientUpdate();

0 commit comments

Comments
 (0)