Fix no Sensors for Control FDIR #858

Merged
muellerr merged 7 commits from fix-no-sensors-fdir into main 2024-02-14 10:45:51 +01:00
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 16d909bd5b - Show all commits

View File

@ -20,6 +20,7 @@ will consitute of a breaking change warranting a new major release:
- PLOC SUPV latchup report could not be handled previously.
- Bugfix in PLOC SUPV latchup report parsing.
- Bugfix in PLOC MPSoC HK set: Set and variables were not set valid.
- The `PTG_CTRL_NO_ATTITUDE_INFORMATION` will now actually trigger a fallback into
safe mode.

View File

@ -998,6 +998,7 @@ ReturnValue_t PlocMpsocHandler::handleGetHkReport(const uint8_t* data) {
if (result != returnvalue::OK) {
return result;
}
hkReport.setValidity(true, true);
return returnvalue::OK;
}