Skip to content

Commit 75e1944

Browse files
committed
Whitespace changes
1 parent 96c4f97 commit 75e1944

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Firmware/RTK_Surveyor/RTK_Surveyor.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ char profileNames[MAX_PROFILE_COUNT][50]; // Populated based on names found in
123123
char settingsFileName[60]; // Contains the %s_Settings_%d.txt with current profile number set
124124

125125
char stationCoordinateECEFFileName[60]; // Contains the /StationCoordinates-ECEF_%d.csv with current profile number set
126-
char stationCoordinateGeodeticFileName[60]; // Contains the /StationCoordinates-Geodetic_%d.csv with current profile
127-
// number set
126+
char stationCoordinateGeodeticFileName[60]; // Contains the /StationCoordinates-Geodetic_%d.csv with current profile
127+
// number set
128128
const int COMMON_COORDINATES_MAX_STATIONS = 50; // Record upto 50 ECEF and Geodetic commonly used stations
129129
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
130130

@@ -252,7 +252,8 @@ char neoFirmwareVersion[20]; // Output to system status menu.
252252
uint8_t zedFirmwareVersionInt = 0; // Controls which features (constellations) can be configured (v1.12 doesn't support
253253
// SBAS). Note: will fail above 2.55!
254254
uint8_t zedModuleType = PLATFORM_F9P; // Controls which messages are supported and configured
255-
char zedUniqueId[11] = { '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 0 }; // Output to system status menu and log file.
255+
char zedUniqueId[11] = {'0', '0', '0', '0', '0', '0',
256+
'0', '0', '0', '0', 0}; // Output to system status menu and log file.
256257

257258
// Use Michael's lock/unlock methods to prevent the UART2 task from calling checkUblox during a sendCommand and
258259
// waitForResponse. Also prevents pushRawData from being called too.
@@ -263,7 +264,7 @@ class SFE_UBLOX_GNSS_SUPER_DERIVED : public SFE_UBLOX_GNSS_SUPER
263264

264265
// Revert to a simple bool lock. The Mutex was causing occasional panics caused by
265266
// vTaskPriorityDisinheritAfterTimeout in lock() (I think possibly / probably caused by the GNSS not being pinned to
266-
//one core?
267+
// one core?
267268
bool iAmLocked = false;
268269

269270
bool createLock(void)

0 commit comments

Comments
 (0)