diff options
author | qctecmdr <qctecmdr@localhost> | 2019-11-11 17:41:02 -0800 |
---|---|---|
committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2019-11-11 17:41:02 -0800 |
commit | 5b1973d668b398ecb6a065ffb5f890d2b7b7b690 (patch) | |
tree | 9b0f79da9a98885deea99c967c9b50390beb6b66 /core/LocApiBase.cpp | |
parent | 46f3ce7221224414b45e18663919c511e00fc8fb (diff) | |
parent | 688372b0a01b496b6735958fbe89803c6233a900 (diff) |
Merge "FR 57252: GPS hal changes to allow configuration for LE target"
Diffstat (limited to 'core/LocApiBase.cpp')
-rw-r--r-- | core/LocApiBase.cpp | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/core/LocApiBase.cpp b/core/LocApiBase.cpp index 3f1a9b0..2830fca 100644 --- a/core/LocApiBase.cpp +++ b/core/LocApiBase.cpp @@ -715,24 +715,27 @@ DEFAULT_IMPL() void LocApiBase::getBlacklistSv() DEFAULT_IMPL() -void LocApiBase::setConstellationControl(const GnssSvTypeConfig& /*config*/) +void LocApiBase::setConstellationControl(const GnssSvTypeConfig& /*config*/, + LocApiResponse* /*adapterResponse*/) DEFAULT_IMPL() void LocApiBase::getConstellationControl() DEFAULT_IMPL() -void LocApiBase::resetConstellationControl() +void LocApiBase::resetConstellationControl(LocApiResponse* /*adapterResponse*/) DEFAULT_IMPL() -LocationError LocApiBase:: +void LocApiBase:: setConstrainedTuncMode(bool /*enabled*/, float /*tuncConstraint*/, - uint32_t /*energyBudget*/) -DEFAULT_IMPL(LOCATION_ERROR_SUCCESS) + uint32_t /*energyBudget*/, + LocApiResponse* /*adapterResponse*/) +DEFAULT_IMPL() -LocationError LocApiBase:: - setPositionAssistedClockEstimatorMode(bool /*enabled*/) -DEFAULT_IMPL(LOCATION_ERROR_SUCCESS) +void LocApiBase:: + setPositionAssistedClockEstimatorMode(bool /*enabled*/, + LocApiResponse* /*adapterResponse*/) +DEFAULT_IMPL() LocationError LocApiBase:: getGnssEnergyConsumed() |