File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ void menuSystem()
9
9
Serial.print (F (" GNSS: " ));
10
10
if (online.gnss == true )
11
11
{
12
- Serial.print (F (" Online- " ));
12
+ Serial.print (F (" Online - " ));
13
13
14
14
printModuleInfo ();
15
15
@@ -48,7 +48,8 @@ void menuSystem()
48
48
sprintf (macAddress, " %02X%02X" , unitMACAddress[4 ], unitMACAddress[5 ]);
49
49
50
50
Serial.print (F (" MAC: " ));
51
- Serial.println (macAddress);
51
+ Serial.print (macAddress);
52
+ Serial.print (F (" - " ));
52
53
53
54
// Verify the ESP UART2 can communicate TX/RX to ZED UART1
54
55
if (online.gnss == true )
@@ -68,18 +69,19 @@ void menuSystem()
68
69
if (myGNSS.begin (serialGNSS, 20 ) == true )
69
70
{
70
71
zedUartPassed = true ;
71
- oled .print (F (" OK" ));
72
+ Serial .print (F (" OK" ));
72
73
}
73
74
else
74
- oled .print (F (" FAIL" ));
75
+ Serial .print (F (" FAIL" ));
75
76
}
76
77
else
77
- oled .print (F (" OK" ));
78
+ Serial .print (F (" OK" ));
78
79
}
79
80
else
80
81
{
81
- Serial.println (" BT Offline" );
82
+ Serial.print (" BT Offline" );
82
83
}
84
+ Serial.println ();
83
85
84
86
Serial.println (F (" d) Configure Debug" ));
85
87
You can’t perform that action at this time.
0 commit comments