Skip to content

Commit d8cfd99

Browse files
committed
Move NTRIP Client icons up to avoid corruption
1 parent 1dc7798 commit d8cfd99

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ void paintWirelessIcon()
241241
wifiIconDisplayed = true;
242242

243243
//Draw the icon
244-
displayBitmap(0, 1, WiFi_Symbol_Width, WiFi_Symbol_Height, WiFi_Symbol);
244+
displayBitmap(0, 0, WiFi_Symbol_Width, WiFi_Symbol_Height, WiFi_Symbol);
245245
}
246246
else
247247
wifiIconDisplayed = false;
@@ -250,11 +250,11 @@ void paintWirelessIcon()
250250
else if (radioState == WIFI_CONNECTED)
251251
{
252252
//Solid WiFi icon
253-
displayBitmap(0, 1, WiFi_Symbol_Width, WiFi_Symbol_Height, WiFi_Symbol);
253+
displayBitmap(0, 0, WiFi_Symbol_Width, WiFi_Symbol_Height, WiFi_Symbol);
254254

255255
//If we are connected to NTRIP Client, show download arrow
256256
if(online.ntripClient == true)
257-
displayBitmap(18, 1, DownloadArrow_Width, DownloadArrow_Height, DownloadArrow);
257+
displayBitmap(18, 0, DownloadArrow_Width, DownloadArrow_Height, DownloadArrow);
258258

259259
oled.line(0, 11, 16, 11);
260260

Firmware/RTK_Surveyor/RTK_Surveyor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
*/
4949

5050
const int FIRMWARE_VERSION_MAJOR = 1;
51-
const int FIRMWARE_VERSION_MINOR = 12;
51+
const int FIRMWARE_VERSION_MINOR = 11;
5252

5353
#define COMPILE_WIFI //Comment out to remove all WiFi functionality
5454
#define COMPILE_BT //Comment out to disable all Bluetooth

Firmware/RTK_Surveyor/menuMain.ino

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ void menuMain()
9191
i2cGNSS.saveConfiguration(); //Save the current settings to flash and BBR on the ZED-F9P
9292

9393
if(restartRover == true)
94+
{
95+
restartRover = false;
9496
requestChangeState(STATE_ROVER_NOT_STARTED); //Restart rover upon exit for latest changes to take effect
97+
}
9598

9699
while (Serial.available()) Serial.read(); //Empty buffer of any newline chars
97100
}

0 commit comments

Comments
 (0)