Skip to content

Commit 0eb5082

Browse files
committed
Fix Status Menu for Surveyor (no display)
1 parent 0627ba8 commit 0eb5082

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Firmware/RTK_Surveyor/menuSystem.ino

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ void menuSystem()
99
Serial.print(F("GNSS: "));
1010
if (online.gnss == true)
1111
{
12-
Serial.print(F("Online-"));
12+
Serial.print(F("Online - "));
1313

1414
printModuleInfo();
1515

@@ -48,7 +48,8 @@ void menuSystem()
4848
sprintf(macAddress, "%02X%02X", unitMACAddress[4], unitMACAddress[5]);
4949

5050
Serial.print(F("MAC: "));
51-
Serial.println(macAddress);
51+
Serial.print(macAddress);
52+
Serial.print(F(" - "));
5253

5354
//Verify the ESP UART2 can communicate TX/RX to ZED UART1
5455
if (online.gnss == true)
@@ -68,18 +69,19 @@ void menuSystem()
6869
if (myGNSS.begin(serialGNSS, 20) == true)
6970
{
7071
zedUartPassed = true;
71-
oled.print(F("OK"));
72+
Serial.print(F("OK"));
7273
}
7374
else
74-
oled.print(F("FAIL"));
75+
Serial.print(F("FAIL"));
7576
}
7677
else
77-
oled.print(F("OK"));
78+
Serial.print(F("OK"));
7879
}
7980
else
8081
{
81-
Serial.println("BT Offline");
82+
Serial.print("BT Offline");
8283
}
84+
Serial.println();
8385

8486
Serial.println(F("d) Configure Debug"));
8587

0 commit comments

Comments
 (0)