diff options
author | Wei (GPS SD) Chen <weic@codeaurora.org> | 2020-07-13 15:09:36 -0700 |
---|---|---|
committer | Wei (GPS SD) Chen <weic@codeaurora.org> | 2020-08-06 21:26:51 -0700 |
commit | 139addcf14e334dfa8bd37f3f7814d2293545416 (patch) | |
tree | 572134168b88adf037e497e40f96d7dd3690e84a /core/LocApiBase.cpp | |
parent | b36c037e3a241e69eb70940ea40084f9c3ba4939 (diff) |
GPS HAL: support config multi-band of GNSS constellation
Configure multi-band of GNSS constellation and retrieve the
constellation configure
Change-Id: I8d37c1478c74d5742b4d59ec8ce773b5d073b576
CRs-fixed: 2723496
Diffstat (limited to 'core/LocApiBase.cpp')
-rw-r--r-- | core/LocApiBase.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/core/LocApiBase.cpp b/core/LocApiBase.cpp index 47f89dd..3f15d69 100644 --- a/core/LocApiBase.cpp +++ b/core/LocApiBase.cpp @@ -717,7 +717,8 @@ DEFAULT_IMPL(LOCATION_ERROR_SUCCESS) LocationError LocApiBase::setBlacklistSvSync(const GnssSvIdConfig& /*config*/) DEFAULT_IMPL(LOCATION_ERROR_SUCCESS) -void LocApiBase::setBlacklistSv(const GnssSvIdConfig& /*config*/) +void LocApiBase::setBlacklistSv(const GnssSvIdConfig& /*config*/, + LocApiResponse* /*adapterResponse*/) DEFAULT_IMPL() void LocApiBase::getBlacklistSv() @@ -780,4 +781,12 @@ void LocApiBase:: getParameter(uint32_t sessionId, GnssConfigFlagsMask flags, LocApiResponse* /*adapterResponse*/) DEFAULT_IMPL() +void LocApiBase:: + configConstellationMultiBand(const GnssSvTypeConfig& secondaryBandConfig, + LocApiResponse* /*adapterResponse*/) +DEFAULT_IMPL() + +void LocApiBase:: + getConstellationMultiBandConfig(uint32_t sessionId, LocApiResponse* /*adapterResponse*/) +DEFAULT_IMPL() } // namespace loc_core |