Skip to content

Commit bf6935f

Browse files
committed
Remove Serial.prints
1 parent fb12ea2 commit bf6935f

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Firmware/RTK_Surveyor/System.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ bool commandSupported(const uint32_t key)
552552
}
553553
if (commandNumber == MAX_UBX_CMD)
554554
{
555-
Serial.printf("commandSupported: Unknown command key 0x%02X\r\n", key);
555+
systemPrintln("commandSupported: Unknown command key 0x%02X\r\n", key);
556556
commandSupported = false;
557557
}
558558
else

Firmware/RTK_Surveyor/menuEthernet.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void beginEthernet()
5454
}
5555
else
5656
{
57-
Serial.println("Ethernet started with static IP");
57+
systemPrintln("Ethernet started with static IP");
5858
online.ethernetStatus = ETH_CONNECTED;
5959
}
6060
}

Firmware/RTK_Surveyor/menuMessages.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,6 @@ void menuMessagesSubtype(uint8_t *localMessageRate, const char* messageType)
334334

335335
if (strcmp(messageType, "RTCM-Base") == 0) //The ubxMessageRatesBase array is 0 to MAX_UBX_MSG_RTCM - 1
336336
{
337-
Serial.println("Special handling");
338337
startOfBlock = 0;
339338
endOfBlock = MAX_UBX_MSG_RTCM;
340339
rtcmOffset = getMessageNumberByName("UBX_RTCM_1005");

0 commit comments

Comments
 (0)