Skip to content

Commit cfbd696

Browse files
committed
Display 100+ SIV as >99
1 parent 8108bd5 commit cfbd696

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Firmware/RTK_Everywhere/Display.ino

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1712,11 +1712,15 @@ void paintSIVText(displayCoords textCoords)
17121712
{
17131713
oled->setFont(QW_FONT_8X16); // Set font to type 1: 8x16
17141714
oled->setCursor(textCoords.x, textCoords.y); // x, y
1715-
oled->print(":");
17161715

17171716
uint8_t siv = gnss->getSatellitesInView();
17181717
if (siv > 99)
1718+
{
1719+
oled->print(">");
17191720
siv = 99; // Limit SIV to two digits
1721+
}
1722+
else
1723+
oled->print(":");
17201724

17211725
if (online.gnss)
17221726
{

0 commit comments

Comments
 (0)