Send updated GPS lock value to xtra-daemon

Send updated (masked) GPS lock value to
xtra-daemon

CRs-Fixed: 2454370
Change-Id: I17439a2aa10d776cff882a4fb09224489b86c796
This commit is contained in:
Mike Cailean 2019-05-16 15:35:00 -07:00
parent edf991e3b9
commit 02e5413b20

View file

@ -123,7 +123,7 @@ bool XtraSystemStatusObserver::updateLockStatus(GnssConfigGpsLock lock) {
stringstream ss; stringstream ss;
ss << "gpslock"; ss << "gpslock";
ss << " " << lock; ss << " " << mGpsLock;
string s = ss.str(); string s = ss.str();
return ( LocIpc::send(*mSender, (const uint8_t*)s.data(), s.size()) ); return ( LocIpc::send(*mSender, (const uint8_t*)s.data(), s.size()) );
} }