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 d06fabd commit b9d63c3Copy full SHA for b9d63c3
Firmware/RTK_Surveyor/Base.ino
@@ -235,13 +235,9 @@ void SFE_UBLOX_GNSS::processRTCM(uint8_t incoming)
235
{
236
if (rtcmPacketsSent > 99) rtcmPacketsSent = 1; //Trim to two digits to avoid overlap
237
}
238
- else if (logIncreasing == true)
239
- {
240
- if (rtcmPacketsSent > 999) rtcmPacketsSent = 1; //Trim to three digits to avoid log icon
241
- }
242
else
243
244
- if (rtcmPacketsSent > 9999) rtcmPacketsSent = 1;
+ if (rtcmPacketsSent > 999) rtcmPacketsSent = 1; //Trim to three digits to avoid log icon and increasing bar
245
246
247
//Determine if we should check this byte with the RTCM checker or simply pass it along
0 commit comments