diff options
author | Dante Russo <drusso@codeaurora.org> | 2020-06-22 10:44:25 -0700 |
---|---|---|
committer | Dante Russo <drusso@codeaurora.org> | 2020-06-22 11:21:25 -0700 |
commit | 8dc2ec8ff30f1d58d99782932ed2f9593ec06a0b (patch) | |
tree | cd29fdcfe4a704310d09b8a57dd05d080c229cbd /core/LocApiBase.cpp | |
parent | 9737855755e522666d6dcb4a7091b3620b9027e7 (diff) |
Enable new LPP Profile options for 5G
Change LPP Profile options from enum to bitmask
to allow for more bit options to be added.
Added two new bits for LPP Profile, User Plane 5G
and Control Plan 5G.
Change-Id: I058738e50f4bfb69f4966082890ec8b8ed8f1abc
CRs-fixed: 2605663
Diffstat (limited to 'core/LocApiBase.cpp')
-rw-r--r-- | core/LocApiBase.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/LocApiBase.cpp b/core/LocApiBase.cpp index 6af2ca9..144e975 100644 --- a/core/LocApiBase.cpp +++ b/core/LocApiBase.cpp @@ -670,7 +670,7 @@ enum loc_api_adapter_err LocApiBase:: DEFAULT_IMPL(LOC_API_ADAPTER_ERR_SUCCESS) LocationError LocApiBase:: - setLPPConfigSync(GnssConfigLppProfile /*profile*/) + setLPPConfigSync(GnssConfigLppProfileMask /*profileMask*/) DEFAULT_IMPL(LOCATION_ERROR_SUCCESS) @@ -715,9 +715,6 @@ DEFAULT_IMPL(LOCATION_ERROR_SUCCESS) GnssConfigSuplVersion LocApiBase::convertSuplVersion(const uint32_t /*suplVersion*/) DEFAULT_IMPL(GNSS_CONFIG_SUPL_VERSION_1_0_0) -GnssConfigLppProfile LocApiBase::convertLppProfile(const uint32_t /*lppProfile*/) -DEFAULT_IMPL(GNSS_CONFIG_LPP_PROFILE_RRLP_ON_LTE) - GnssConfigLppeControlPlaneMask LocApiBase::convertLppeCp(const uint32_t /*lppeControlPlaneMask*/) DEFAULT_IMPL(0) |