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
{{ message }}
This repository was archived by the owner on Jan 28, 2021. It is now read-only.
Describe your issue here. If you reference a datasheet please specify which one and in which section (ie, the protocol manual, section 5.1.2). Additionally, screenshots are easy to paste into github.
3
+
4
+
### Your workbench
5
+
* What development board or microcontroller are you using?
6
+
* What version of hardware or breakout board are you using?
7
+
* How is the breakout board wired to your microcontroller?
8
+
* How is everything being powered?
9
+
* Are there any additional details that may help us help you?
10
+
11
+
### Steps to reproduce
12
+
Tell us how to reproduce this issue. Please post stripped down example code demonstrating your issue.
Copy file name to clipboardExpand all lines: src/SparkFun_Ublox_Arduino_Library.h
+30-30
Original file line number
Diff line number
Diff line change
@@ -239,8 +239,8 @@ class SFE_UBLOX_GPS
239
239
240
240
boolean setAutoPVT(boolean enabled, uint16_t maxWait = 250); //Enable/disable automatic PVT reports at the navigation frequency
241
241
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.
242
-
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.
243
-
242
+
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.
243
+
244
244
int32_tgetLatitude(uint16_t maxWait = 250); //Returns the current latitude in degrees * 10^-7. Auto selects between HighPrecision and Regular depending on ability of module.
245
245
int32_tgetLongitude(uint16_t maxWait = 250); //Returns the current longitude in degrees * 10-7. Auto selects between HighPrecision and Regular depending on ability of module.
246
246
int32_tgetAltitude(uint16_t maxWait = 250); //Returns the current altitude in mm above ellipsoid
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
@@ -376,14 +376,14 @@ class SFE_UBLOX_GPS
376
376
uint8_t versionLow; //Loaded from getProtocolVersion().
377
377
uint8_t versionHigh;
378
378
379
-
uint32_t timeOfWeek;
380
-
int32_t highResLatitude;
381
-
int32_t highResLongitude;
382
-
int32_t elipsoid;
383
-
int32_t meanSeaLevel;
384
-
int32_t geoidSeparation;
385
-
uint32_t horizontalAccuracy;
386
-
uint32_t verticalAccuracy;
379
+
uint32_t timeOfWeek;
380
+
int32_t highResLatitude;
381
+
int32_t highResLongitude;
382
+
int32_t elipsoid;
383
+
int32_t meanSeaLevel;
384
+
int32_t geoidSeparation;
385
+
uint32_t horizontalAccuracy;
386
+
uint32_t verticalAccuracy;
387
387
388
388
uint16_t rtcmFrameCounter = 0; //Tracks the type of incoming byte inside RTCM frame
0 commit comments