Skip to content

Commit 1ddb2df

Browse files
committed
Correct debug printing of GGA
1 parent 5e16e4b commit 1ddb2df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/NtripClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,7 @@ void pushGPGGA(NMEA_GGA_data_t *nmeaData)
522522
{
523523
lastGGAPush = millis();
524524

525-
log_d("Pushing GGA to server: ", (const char *)nmeaData->nmea); // .nmea is printable (NULL-terminated) and already has \r\n on the end
525+
log_d("Pushing GGA to server: %s", (const char *)nmeaData->nmea); // .nmea is printable (NULL-terminated) and already has \r\n on the end
526526

527527
//Push our current GGA sentence to caster
528528
ntripClient->print((const char *)nmeaData->nmea);

0 commit comments

Comments
 (0)