bugfix
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit

This commit is contained in:
2023-04-14 19:58:22 +02:00
parent e023220be4
commit 7f1fe3a2d8
4 changed files with 41 additions and 31 deletions

View File

@ -126,7 +126,7 @@ void EiveSystem::handleEventMessages() {
case EventMessage::EVENT_MESSAGE:
switch (event.getEvent()) {
case pdec::INVALID_TC_FRAME: {
if (event.getParameter1() == static_cast<uint32_t>(pdec::FrameAna_t::FRAME_DIRTY)) {
if (event.getParameter1() == pdec::FRAME_DIRTY_RETVAL) {
frameDirtyErrorCounter++;
}
break;
@ -299,6 +299,7 @@ void EiveSystem::pdecRecoveryLogic() {
}
}
frameDirtyErrorCounter = 0;
frameDirtyCheckCd.resetTimer();
}
}