sm7325-common: update gps to LA.UM.9.14.r1-20000-LAHAINA.QSSI13.0

Change-Id: I100b0807cce37b9f3724c74d2f0979a955d1ddd2
This commit is contained in:
SGCMarkus 2022-08-18 20:34:15 +02:00 committed by Nolen Johnson
parent e7a9456ecd
commit a0fc1b687c
30 changed files with 202 additions and 70 deletions

View file

@ -4,7 +4,7 @@ cc_library_shared {
name: "libbatching",
vendor: true,
sanitize: GNSS_SANITIZE,
shared_libs: [
"libutils",

View file

@ -37,7 +37,9 @@
using namespace loc_core;
BatchingAdapter::BatchingAdapter() :
LocAdapterBase(0, LocContext::getLocContext(LocContext::mLocationHalName)),
LocAdapterBase(0,
LocContext::getLocContext(LocContext::mLocationHalName),
false, nullptr, true),
mOngoingTripDistance(0),
mOngoingTripTBFInterval(0),
mTripWithOngoingTBFDropped(false),
@ -50,6 +52,10 @@ BatchingAdapter::BatchingAdapter() :
LOC_LOGD("%s]: Constructor", __func__);
readConfigCommand();
setConfigCommand();
// at last step, let us inform adapater base that we are done
// with initialization, e.g.: ready to process handleEngineUpEvent
doneInit();
}
void