Skip to content

Commit f9d628e

Browse files
committed
Resolve # 560
1 parent e444eb0 commit f9d628e

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Firmware/RTK_Everywhere/Display.ino

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -327,15 +327,15 @@ void displayUpdate()
327327
displayFullIPAddress(&iconPropertyList); // Bottom left - 128x64 only
328328
setRadioIcons(&iconPropertyList);
329329
paintBaseTempSurveyStarted(&iconPropertyList);
330-
displaySivVsOpenShort(&iconPropertyList); // 128x64 only
330+
displaySivVsOpenShort(&iconPropertyList);
331331
break;
332332
case (STATE_BASE_TEMP_TRANSMITTING):
333333
paintLogging(&iconPropertyList);
334334
displayBatteryVsEthernet(&iconPropertyList); // Top right
335335
displayFullIPAddress(&iconPropertyList); // Bottom left - 128x64 only
336336
setRadioIcons(&iconPropertyList);
337337
paintRTCM(&iconPropertyList);
338-
displaySivVsOpenShort(&iconPropertyList); // 128x64 only
338+
displaySivVsOpenShort(&iconPropertyList);
339339
break;
340340
case (STATE_BASE_FIXED_NOT_STARTED):
341341
displayBatteryVsEthernet(&iconPropertyList); // Top right
@@ -348,7 +348,7 @@ void displayUpdate()
348348
displayFullIPAddress(&iconPropertyList); // Bottom left - 128x64 only
349349
setRadioIcons(&iconPropertyList);
350350
paintRTCM(&iconPropertyList);
351-
displaySivVsOpenShort(&iconPropertyList); // 128x64 only
351+
displaySivVsOpenShort(&iconPropertyList);
352352
break;
353353

354354
case (STATE_NTPSERVER_NOT_STARTED):
@@ -1725,12 +1725,16 @@ displayCoords paintSIVIcon(std::vector<iconPropertyBlinking> *iconList, const ic
17251725
icon = &LBandIconProperties;
17261726
else
17271727
{
1728+
// If in Rover mode, always use SIVIconProperties
17281729
if (inBaseMode() == false)
17291730
icon = &SIVIconProperties;
1731+
// Else if in Base mode and during base settle, use SIVIconProperties
17301732
else if (systemState == STATE_BASE_TEMP_SETTLE)
17311733
icon = &SIVIconProperties; //During base settle, SIV inline with HPA
1732-
else if (inBaseMode() && present.display_type == DISPLAY_128x64)
1733-
icon = &BaseSIVIconProperties; // Move SIV down to avoid collision with 'Xmitting RTCM' text
1734+
// Else use BaseSIVIconProperties.
1735+
// On 128x64 displays, SIV will be moved down to avoid collision with 'Xmitting RTCM' text
1736+
else
1737+
icon = &BaseSIVIconProperties;
17341738
}
17351739

17361740
// if in base mode, don't blink

0 commit comments

Comments
 (0)