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 8108bd5 commit cfbd696Copy full SHA for cfbd696
Firmware/RTK_Everywhere/Display.ino
@@ -1712,11 +1712,15 @@ void paintSIVText(displayCoords textCoords)
1712
{
1713
oled->setFont(QW_FONT_8X16); // Set font to type 1: 8x16
1714
oled->setCursor(textCoords.x, textCoords.y); // x, y
1715
- oled->print(":");
1716
1717
uint8_t siv = gnss->getSatellitesInView();
1718
if (siv > 99)
+ {
1719
+ oled->print(">");
1720
siv = 99; // Limit SIV to two digits
1721
+ }
1722
+ else
1723
+ oled->print(":");
1724
1725
if (online.gnss)
1726
0 commit comments