summaryrefslogtreecommitdiff
path: root/location
diff options
context:
space:
mode:
authorqctecmdr <qctecmdr@localhost>2019-06-17 20:10:13 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2019-06-17 20:10:13 -0700
commit16c0367c5b3e17d76d9a68c8057d24c50252bf84 (patch)
tree19280ff06531427da4bf22e0ad8171976c8f3f40 /location
parentff98fecec453ceac6d7f665c5a746352a41aaecd (diff)
parent061857b0799db463d6f0e038d4cb8c59a4124bb5 (diff)
downloadgps-16c0367c5b3e17d76d9a68c8057d24c50252bf84.tar.gz
Merge "GnssLocationInfoNotification: move basic location info to top"
Diffstat (limited to 'location')
-rw-r--r--location/LocationDataTypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/location/LocationDataTypes.h b/location/LocationDataTypes.h
index 4571a88..406a75c 100644
--- a/location/LocationDataTypes.h
+++ b/location/LocationDataTypes.h
@@ -941,7 +941,8 @@ typedef struct {
} GnssSystemTime;
typedef struct {
- uint32_t size; // set to sizeof(GnssLocationInfo)
+ uint32_t size; // set to sizeof(GnssLocationInfo)
+ Location location; // basic locaiton info, latitude, longitude, and etc
GnssLocationInfoFlagMask flags; // bitwise OR of GnssLocationInfoBits for param validity
float altitudeMeanSeaLevel; // altitude wrt mean sea level
float pdop; // position dilusion of precision
@@ -974,7 +975,6 @@ typedef struct {
GnssMeasUsageInfo measUsageInfo[GNSS_SV_MAX]; // GNSS Measurement Usage info
uint8_t leapSeconds; // leap second
float timeUncMs; // Time uncertainty in milliseconds
- Location location;
} GnssLocationInfoNotification;
typedef struct {