You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Firmware/RTK_Surveyor/RTK_Surveyor.ino
+26-28Lines changed: 26 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -231,34 +231,32 @@ char neoFirmwareVersion[20]; //Output to system status menu.
231
231
uint8_t zedFirmwareVersionInt = 0; //Controls which features (constellations) can be configured (v1.12 doesn't support SBAS). Note: will fail above 2.55!
232
232
uint8_t zedModuleType = PLATFORM_F9P; //Controls which messages are supported and configured
233
233
234
-
SFE_UBLOX_GNSS_SUPER theGNSS;
235
-
236
-
//// Use Michael's lock/unlock methods to prevent the UART2 task from calling checkUblox during a sendCommand and waitForResponse.
237
-
//// Also prevents pushRawData from being called too.
238
-
//class SFE_UBLOX_GNSS_SUPER_DERIVED : public SFE_UBLOX_GNSS_SUPER
239
-
//{
240
-
//public:
241
-
// volatile bool _iAmLocked = false;
242
-
// bool lock(void)
243
-
// {
244
-
// if (_iAmLocked)
245
-
// {
246
-
// unsigned long startTime = millis();
247
-
// while (_iAmLocked && (millis() < (startTime + 2200)))
248
-
// delay(1); // YIELD
249
-
// if (_iAmLocked)
250
-
// return false;
251
-
// }
252
-
// _iAmLocked = true;
253
-
// return true;
254
-
// }
255
-
// void unlock(void)
256
-
// {
257
-
// _iAmLocked = false;
258
-
// }
259
-
//};
260
-
//
261
-
//SFE_UBLOX_GNSS_SUPER_DERIVED theGNSS;
234
+
// Use Michael's lock/unlock methods to prevent the UART2 task from calling checkUblox during a sendCommand and waitForResponse.
235
+
// Also prevents pushRawData from being called too.
0 commit comments