Skip to content

Commit

Permalink
fix: multi GCS bundle unpack locally
Browse files Browse the repository at this point in the history
  • Loading branch information
uavinda committed Mar 5, 2024
1 parent 2251b10 commit 51539cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plugins/Protocols/PApx/PApxData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ bool PApxData::process_downlink(const xbus::pid_s &pid, PStreamReader &stream)
MandalaFact *lon = qobject_cast<MandalaFact *>(
mandalaInstance->findChild(factNamePath + ".lon"));
if (lat && lon) {
lat->sendValue(mandala::from_gps(bundlePos.lat));
lon->sendValue(mandala::from_gps(bundlePos.lon));
lat->setRawValueLocal(mandala::from_gps(bundlePos.lat));
lon->setRawValueLocal(mandala::from_gps(bundlePos.lon));
}
return true;
}
Expand Down

0 comments on commit 51539cc

Please sign in to comment.