Merge "Send updated GPS lock value to xtra-daemon"

This commit is contained in:
qctecmdr 2019-05-19 11:35:54 -07:00 committed by Gerrit - the friendly Code Review server
commit 3b8395fe7b

View file

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