@@ -327,15 +327,15 @@ void displayUpdate()
327
327
displayFullIPAddress (&iconPropertyList); // Bottom left - 128x64 only
328
328
setRadioIcons (&iconPropertyList);
329
329
paintBaseTempSurveyStarted (&iconPropertyList);
330
- displaySivVsOpenShort (&iconPropertyList); // 128x64 only
330
+ displaySivVsOpenShort (&iconPropertyList);
331
331
break ;
332
332
case (STATE_BASE_TEMP_TRANSMITTING):
333
333
paintLogging (&iconPropertyList);
334
334
displayBatteryVsEthernet (&iconPropertyList); // Top right
335
335
displayFullIPAddress (&iconPropertyList); // Bottom left - 128x64 only
336
336
setRadioIcons (&iconPropertyList);
337
337
paintRTCM (&iconPropertyList);
338
- displaySivVsOpenShort (&iconPropertyList); // 128x64 only
338
+ displaySivVsOpenShort (&iconPropertyList);
339
339
break ;
340
340
case (STATE_BASE_FIXED_NOT_STARTED):
341
341
displayBatteryVsEthernet (&iconPropertyList); // Top right
@@ -348,7 +348,7 @@ void displayUpdate()
348
348
displayFullIPAddress (&iconPropertyList); // Bottom left - 128x64 only
349
349
setRadioIcons (&iconPropertyList);
350
350
paintRTCM (&iconPropertyList);
351
- displaySivVsOpenShort (&iconPropertyList); // 128x64 only
351
+ displaySivVsOpenShort (&iconPropertyList);
352
352
break ;
353
353
354
354
case (STATE_NTPSERVER_NOT_STARTED):
@@ -1725,12 +1725,16 @@ displayCoords paintSIVIcon(std::vector<iconPropertyBlinking> *iconList, const ic
1725
1725
icon = &LBandIconProperties;
1726
1726
else
1727
1727
{
1728
+ // If in Rover mode, always use SIVIconProperties
1728
1729
if (inBaseMode () == false )
1729
1730
icon = &SIVIconProperties;
1731
+ // Else if in Base mode and during base settle, use SIVIconProperties
1730
1732
else if (systemState == STATE_BASE_TEMP_SETTLE)
1731
1733
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;
1734
1738
}
1735
1739
1736
1740
// if in base mode, don't blink
0 commit comments