prep next version
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
EIVE/eive-obsw/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2023-08-15 13:26:45 +02:00
parent 77e3b8c359
commit fb2995575b
Signed by: muellerr
GPG Key ID: FCE0B2BD2195142F
3 changed files with 5 additions and 3 deletions

View File

@ -16,7 +16,9 @@ will consitute of a breaking change warranting a new major release:
# [unreleased]
- `eive-tmtc`:
# [v6.4.0] 2023-08-15
- `eive-tmtc`: v5.4.0
## Fixed

View File

@ -10,7 +10,7 @@
cmake_minimum_required(VERSION 3.13)
set(OBSW_VERSION_MAJOR 6)
set(OBSW_VERSION_MINOR 3)
set(OBSW_VERSION_MINOR 4)
set(OBSW_VERSION_REVISION 0)
# set(CMAKE_VERBOSE TRUE)

View File

@ -134,7 +134,7 @@ void EiveSystem::handleEventMessages() {
if (event.getParameter1() == pdec::FRAME_DIRTY_RETVAL) {
frameDirtyErrorCounter++;
// Check whether threshold was reached after 10 seconds.
if(frameDirtyErrorCounter == 1) {
if (frameDirtyErrorCounter == 1) {
frameDirtyCheckCd.resetTimer();
}
}