Skip to content

Commit b9d63c3

Browse files
committed
Reduce RTCM count to avoid activity bar
1 parent d06fabd commit b9d63c3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Firmware/RTK_Surveyor/Base.ino

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -235,13 +235,9 @@ void SFE_UBLOX_GNSS::processRTCM(uint8_t incoming)
235235
{
236236
if (rtcmPacketsSent > 99) rtcmPacketsSent = 1; //Trim to two digits to avoid overlap
237237
}
238-
else if (logIncreasing == true)
239-
{
240-
if (rtcmPacketsSent > 999) rtcmPacketsSent = 1; //Trim to three digits to avoid log icon
241-
}
242238
else
243239
{
244-
if (rtcmPacketsSent > 9999) rtcmPacketsSent = 1;
240+
if (rtcmPacketsSent > 999) rtcmPacketsSent = 1; //Trim to three digits to avoid log icon and increasing bar
245241
}
246242

247243
//Determine if we should check this byte with the RTCM checker or simply pass it along

0 commit comments

Comments
 (0)