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 1dc7798 commit d8cfd99Copy full SHA for d8cfd99
Firmware/RTK_Surveyor/Display.ino
@@ -241,7 +241,7 @@ void paintWirelessIcon()
241
wifiIconDisplayed = true;
242
243
//Draw the icon
244
- displayBitmap(0, 1, WiFi_Symbol_Width, WiFi_Symbol_Height, WiFi_Symbol);
+ displayBitmap(0, 0, WiFi_Symbol_Width, WiFi_Symbol_Height, WiFi_Symbol);
245
}
246
else
247
wifiIconDisplayed = false;
@@ -250,11 +250,11 @@ void paintWirelessIcon()
250
else if (radioState == WIFI_CONNECTED)
251
{
252
//Solid WiFi icon
253
254
255
//If we are connected to NTRIP Client, show download arrow
256
if(online.ntripClient == true)
257
- displayBitmap(18, 1, DownloadArrow_Width, DownloadArrow_Height, DownloadArrow);
+ displayBitmap(18, 0, DownloadArrow_Width, DownloadArrow_Height, DownloadArrow);
258
259
oled.line(0, 11, 16, 11);
260
Firmware/RTK_Surveyor/RTK_Surveyor.ino
@@ -48,7 +48,7 @@
48
*/
49
50
const int FIRMWARE_VERSION_MAJOR = 1;
51
-const int FIRMWARE_VERSION_MINOR = 12;
+const int FIRMWARE_VERSION_MINOR = 11;
52
53
#define COMPILE_WIFI //Comment out to remove all WiFi functionality
54
#define COMPILE_BT //Comment out to disable all Bluetooth
Firmware/RTK_Surveyor/menuMain.ino
@@ -91,7 +91,10 @@ void menuMain()
91
i2cGNSS.saveConfiguration(); //Save the current settings to flash and BBR on the ZED-F9P
92
93
if(restartRover == true)
94
+ {
95
+ restartRover = false;
96
requestChangeState(STATE_ROVER_NOT_STARTED); //Restart rover upon exit for latest changes to take effect
97
+ }
98
99
while (Serial.available()) Serial.read(); //Empty buffer of any newline chars
100
0 commit comments