@@ -43,13 +43,26 @@ void menuSystem()
4343 if (online.microSD == true ) Serial.println (F (" Online" ));
4444 else Serial.println (F (" Offline" ));
4545
46+ if (online.lband == true )
47+ {
48+ Serial.print (F (" L-Band: Online - " ));
49+ if (online.lbandCorrections == true ) Serial.print (F (" Keys Good" ));
50+ else Serial.print (F (" No Keys" ));
51+
52+ if (lbandCorrectionsReceived == true ) Serial.print (F (" / Corrections Received" ));
53+ else Serial.print (F (" / Corrections Received Failed" ));
54+
55+ Serial.printf (" / Eb/N0[dB] (>9 is good): %0.2f" , lBandEBNO);
56+ Serial.println ();
57+ }
58+
4659 // Display MAC address
4760 char macAddress[5 ];
4861 sprintf (macAddress, " %02X%02X" , unitMACAddress[4 ], unitMACAddress[5 ]);
4962
50- Serial.print (F (" MAC: " ));
63+ Serial.print (F (" Bluetooth ( " ));
5164 Serial.print (macAddress);
52- Serial.print (F (" - " ));
65+ Serial.print (F (" ): " ));
5366
5467 // Verify the ESP UART2 can communicate TX/RX to ZED UART1
5568 if (online.gnss == true )
@@ -67,15 +80,15 @@ void menuSystem()
6780 if (myGNSS.begin (serialGNSS) == true ) // begin() attempts 3 connections
6881 {
6982 zedUartPassed = true ;
70- Serial.print (F (" BT Online" ));
83+ Serial.print (F (" Online" ));
7184 }
7285 else
73- Serial.print (F (" BT Offline" ));
86+ Serial.print (F (" Offline" ));
7487
7588 startUART2Tasks (); // Return to normal operation
7689 }
7790 else
78- Serial.print (F (" BT Online" ));
91+ Serial.print (F (" Online" ));
7992 }
8093 else
8194 {
0 commit comments