From eaf7e54b54a31c571560bf5fe869bb235a2aacaf Mon Sep 17 00:00:00 2001 From: Saurabh Srivastava Date: Sun, 20 May 2018 19:29:46 +0530 Subject: FR 45651 - GNSS SV/Constellation Control Adding support for configuring GNSS SVs and constellations to be used. Change-Id: I47d5cd9d08ac9aaf633be2fe3b1bd152a2f4293b CRs-Fixed: 2184871 --- core/LocApiBase.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'core/LocApiBase.h') diff --git a/core/LocApiBase.h b/core/LocApiBase.h index f9fdf4d..17ccc4e 100644 --- a/core/LocApiBase.h +++ b/core/LocApiBase.h @@ -157,6 +157,8 @@ public: void reportWwanZppFix(LocGpsLocation &zppLoc); void reportZppBestAvailableFix(LocGpsLocation &zppLoc, GpsLocationExtended &location_extended, LocPosTechMask tech_mask); + void reportGnssSvIdConfig(const GnssSvIdConfig& config); + void reportGnssSvTypeConfig(const GnssSvTypeConfig& config); // downward calls // All below functions are to be defined by adapter specific modules: @@ -260,6 +262,13 @@ public: virtual LocationError setXtraVersionCheckSync(uint32_t check); + /* Requests for SV/Constellation Control */ + virtual LocationError setBlacklistSvSync(const GnssSvIdConfig& config); + virtual void setBlacklistSv(const GnssSvIdConfig& config); + virtual void getBlacklistSv(); + virtual void setConstellationControl(const GnssSvTypeConfig& config); + virtual void getConstellationControl(); + virtual void resetConstellationControl(); }; typedef LocApiBase* (getLocApi_t)(LOC_API_ADAPTER_EVENT_MASK_T exMask, -- cgit v1.2.3