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 1d24afd commit 26fb8b9Copy full SHA for 26fb8b9
Firmware/RTK_Surveyor/Display.ino
@@ -571,8 +571,11 @@ uint32_t paintWirelessIcon()
571
if (btState == BT_CONNECTED)
572
{
573
icons = ICON_BT_SYMBOL;
574
- if ((systemState <= STATE_BASE_NOT_STARTED) && online.rxRtcmCorrectionData)
+ if (systemState <= STATE_BASE_NOT_STARTED)
575
+ {
576
+ if (online.rxRtcmCorrectionData)
577
icons |= ICON_DOWN_ARROW;
578
+ }
579
else if (systemState <= STATE_BUBBLE_LEVEL)
580
icons |= ICON_UP_ARROW;
581
}
0 commit comments