minor update in fsfw
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good

This commit is contained in:
2022-03-08 09:48:18 +01:00
parent 6ccf16f56d
commit 10a2973dc7
3 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ ReturnValue_t ThermalController::checkModeCommand(Mode_t mode, Submode_t submode
return INVALID_SUBMODE;
}
if ((mode != MODE_OFF) && (mode != MODE_ON) && (mode != MODE_NORMAL)) {
return MOVE_IS_INVALID;
return INVALID_MODE;
}
return RETURN_OK;
}