Add debug GPS dataset including more data #771

Merged
muellerr merged 8 commits from more-gps-tm into main 2023-08-14 12:20:41 +02:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 2af1b6b698 - Show all commits

View File

@ -25,6 +25,9 @@ will consitute of a breaking change warranting a new major release:
## Fixed
- The handling function of the GPS data is only called once per GPS read. This should remove
the fake fix-has-changed events.
## Changed
- GPS Fix has changed event is no longer triggered for the EM
# [v6.3.0] 2023-08-03

View File

@ -264,7 +264,9 @@ ReturnValue_t GpsHyperionLinuxController::handleCoreTelemetry(bool modeIsSet) {
}
}
if (gpsSet.fixMode.value != newFix) {
#if OBSW_Q7S_EM != 1
triggerEvent(GpsHyperion::GPS_FIX_CHANGE, gpsSet.fixMode.value, newFix);
#endif
}
gpsSet.fixMode = newFix;
gpsSet.fixMode.setValid(modeIsSet);