We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e16e4b commit 1ddb2dfCopy full SHA for 1ddb2df
Firmware/RTK_Surveyor/NtripClient.ino
@@ -522,7 +522,7 @@ void pushGPGGA(NMEA_GGA_data_t *nmeaData)
522
{
523
lastGGAPush = millis();
524
525
- log_d("Pushing GGA to server: ", (const char *)nmeaData->nmea); // .nmea is printable (NULL-terminated) and already has \r\n on the end
+ log_d("Pushing GGA to server: %s", (const char *)nmeaData->nmea); // .nmea is printable (NULL-terminated) and already has \r\n on the end
526
527
//Push our current GGA sentence to caster
528
ntripClient->print((const char *)nmeaData->nmea);
0 commit comments