Stop the Spam! #502

Merged
muellerr merged 4 commits from stop-the-spam into develop 2023-03-21 13:46:49 +01:00
2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ will consitute of a breaking change warranting a new major release:
Furthermore, the submode in the NORMAL mode now should be 0 instead of some ON mode submode. Furthermore, the submode in the NORMAL mode now should be 0 instead of some ON mode submode.
- Updated GYR bias values to newest measurements. This also corrects the ADIS values to always - Updated GYR bias values to newest measurements. This also corrects the ADIS values to always
consit of just one digit. consit of just one digit.
- Safe mode controller failure event now only triggers once per minute.
# [v1.38.0] 2023-03-17 # [v1.38.0] 2023-03-17

View File

@ -186,7 +186,7 @@ void AcsController::performSafe() {
safeCtrlFailureFlag = true; safeCtrlFailureFlag = true;
} }
safeCtrlFailureCounter++; safeCtrlFailureCounter++;
if (safeCtrlFailureCounter > 50) { if (safeCtrlFailureCounter > 150) {
safeCtrlFailureFlag = false; safeCtrlFailureFlag = false;
safeCtrlFailureCounter = 0; safeCtrlFailureCounter = 0;
} }