summaryrefslogtreecommitdiff
path: root/location
diff options
context:
space:
mode:
authorBhavna Sharma <sbhavna@codeaurora.org>2018-08-22 09:45:25 -0700
committerBhavna Sharma <sbhavna@codeaurora.org>2018-10-02 09:26:43 -0700
commit5a8d17118152a87e3772deb204960c38a7810f1a (patch)
tree6bda93afceaf0c35e17cd2e1bf6f949468ce0b52 /location
parent9ae180b91354337eb840ba3d0c1975270caf0e7d (diff)
downloadgps-5a8d17118152a87e3772deb204960c38a7810f1a.tar.gz
New additions for Ephemeris and Poly handling
1. Add new data structures to hold the Ephemeris reports. 2. Modifications to SV Poly structure to include delete flags. 3. Add SV_POLY bit to GnssAidingDataSvMask to support delete commands from modem for poly and ephemeris per constellation. 4. Define LocApiBase and LocAdapter functions to report the ephemeris content, request for complete valid ephemeris and Poly content at any time and report delete commands from modem on Ephemeris and Poly content. CRs-Fixed: 2301149 Change-Id: If36e87c410c3204c94a6ed7db30f297edba95508
Diffstat (limited to 'location')
-rw-r--r--location/LocationDataTypes.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/location/LocationDataTypes.h b/location/LocationDataTypes.h
index 9688b4a..aae6dcf 100644
--- a/location/LocationDataTypes.h
+++ b/location/LocationDataTypes.h
@@ -475,7 +475,8 @@ typedef enum {
GNSS_AIDING_DATA_SV_NO_EXIST_BIT = (1<<8), // SV does not exist
GNSS_AIDING_DATA_SV_IONOSPHERE_BIT = (1<<9), // ionosphere correction
GNSS_AIDING_DATA_SV_TIME_BIT = (1<<10),// reset satellite time
- GNSS_AIDING_DATA_SV_MB_DATA = (1 << 11),// delete multiband data
+ GNSS_AIDING_DATA_SV_MB_DATA = (1<<11),// delete multiband data
+ GNSS_AIDING_DATA_SV_POLY_BIT = (1<<12),// poly
} GnssAidingDataSvBits;
typedef uint32_t GnssAidingDataSvTypeMask;