Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit 5b0875e

Browse files
committed
Whitespace change
1 parent 0c49e08 commit 5b0875e

File tree

1 file changed

+30
-30
lines changed

1 file changed

+30
-30
lines changed

src/SparkFun_Ublox_Arduino_Library.h

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,8 @@ class SFE_UBLOX_GPS
235235

236236
boolean setAutoPVT(boolean enabled, uint16_t maxWait = 250); //Enable/disable automatic PVT reports at the navigation frequency
237237
boolean getPVT(uint16_t maxWait = 1000); //Query module for latest group of datums and load global vars: lat, long, alt, speed, SIV, accuracies, etc. If autoPVT is disabled, performs an explicit poll and waits, if enabled does not block. Retruns true if new PVT is available.
238-
boolean getHPPOSLLH(uint16_t maxWait = 1000); //Query module for latest group of datums and load global vars: lat, long, alt, speed, SIV, accuracies, etc. If autoPVT is disabled, performs an explicit poll and waits, if enabled does not block. Retruns true if new PVT is available.
239-
238+
boolean getHPPOSLLH(uint16_t maxWait = 1000); //Query module for latest group of datums and load global vars: lat, long, alt, speed, SIV, accuracies, etc. If autoPVT is disabled, performs an explicit poll and waits, if enabled does not block. Retruns true if new PVT is available.
239+
240240
int32_t getLatitude(uint16_t maxWait = 250); //Returns the current latitude in degrees * 10^-7. Auto selects between HighPrecision and Regular depending on ability of module.
241241
int32_t getLongitude(uint16_t maxWait = 250); //Returns the current longitude in degrees * 10-7. Auto selects between HighPrecision and Regular depending on ability of module.
242242
int32_t getAltitude(uint16_t maxWait = 250); //Returns the current altitude in mm above ellipsoid
@@ -254,14 +254,14 @@ class SFE_UBLOX_GPS
254254
uint8_t getMinute(uint16_t maxWait = 250);
255255
uint8_t getSecond(uint16_t maxWait = 250);
256256

257-
uint32_t getTimeOfWeek(uint16_t maxWait = 250);
258-
int32_t getHighResLatitude(uint16_t maxWait = 250);
259-
int32_t getHighResLongitude(uint16_t maxWait = 250);
260-
int32_t getElipsoid(uint16_t maxWait = 250);
261-
int32_t getMeanSeaLevel(uint16_t maxWait = 250);
262-
int32_t getGeoidSeparation(uint16_t maxWait = 250);
263-
uint32_t getHorizontalAccuracy(uint16_t maxWait = 250);
264-
uint32_t getVerticalAccuracy(uint16_t maxWait = 250);
257+
uint32_t getTimeOfWeek(uint16_t maxWait = 250);
258+
int32_t getHighResLatitude(uint16_t maxWait = 250);
259+
int32_t getHighResLongitude(uint16_t maxWait = 250);
260+
int32_t getElipsoid(uint16_t maxWait = 250);
261+
int32_t getMeanSeaLevel(uint16_t maxWait = 250);
262+
int32_t getGeoidSeparation(uint16_t maxWait = 250);
263+
uint32_t getHorizontalAccuracy(uint16_t maxWait = 250);
264+
uint32_t getVerticalAccuracy(uint16_t maxWait = 250);
265265

266266
//Port configurations
267267
boolean setPortOutput(uint8_t portID, uint8_t comSettings, uint16_t maxWait = 250); //Configure a given port to output UBX, NMEA, RTCM3 or a combination thereof
@@ -360,14 +360,14 @@ class SFE_UBLOX_GPS
360360
uint8_t versionLow; //Loaded from getProtocolVersion().
361361
uint8_t versionHigh;
362362

363-
uint32_t timeOfWeek;
364-
int32_t highResLatitude;
365-
int32_t highResLongitude;
366-
int32_t elipsoid;
367-
int32_t meanSeaLevel;
368-
int32_t geoidSeparation;
369-
uint32_t horizontalAccuracy;
370-
uint32_t verticalAccuracy;
363+
uint32_t timeOfWeek;
364+
int32_t highResLatitude;
365+
int32_t highResLongitude;
366+
int32_t elipsoid;
367+
int32_t meanSeaLevel;
368+
int32_t geoidSeparation;
369+
uint32_t horizontalAccuracy;
370+
uint32_t verticalAccuracy;
371371

372372
uint16_t rtcmFrameCounter = 0; //Tracks the type of incoming byte inside RTCM frame
373373

@@ -457,18 +457,18 @@ class SFE_UBLOX_GPS
457457
uint16_t versionNumber : 1;
458458
} moduleQueried;
459459

460-
struct
461-
{
462-
uint16_t all : 1;
463-
uint16_t timeOfWeek : 1;
464-
uint16_t highResLatitude : 1;
465-
uint16_t highResLongitude : 1;
466-
uint16_t elipsoid : 1;
467-
uint16_t meanSeaLevel : 1;
468-
uint16_t geoidSeparation : 1;
469-
uint16_t horizontalAccuracy : 1;
470-
uint16_t verticalAccuracy : 1;
471-
} highResModuleQueried;
460+
struct
461+
{
462+
uint16_t all : 1;
463+
uint16_t timeOfWeek : 1;
464+
uint16_t highResLatitude : 1;
465+
uint16_t highResLongitude : 1;
466+
uint16_t elipsoid : 1;
467+
uint16_t meanSeaLevel : 1;
468+
uint16_t geoidSeparation : 1;
469+
uint16_t horizontalAccuracy : 1;
470+
uint16_t verticalAccuracy : 1;
471+
} highResModuleQueried;
472472

473473
uint16_t rtcmLen = 0;
474474
};

0 commit comments

Comments
 (0)