disable thermal ctrl loop, throws too many useless events
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
2023-02-09 17:32:40 +01:00
parent 29eda50e35
commit 4bb802362b
3 changed files with 33 additions and 29 deletions

View File

@ -154,11 +154,10 @@ void scheduling::initTasks() {
scheduling::printAddObjectError("Core controller dummy", objects::CORE_CONTROLLER);
}
// Disabled until more stable
// result = thermalTask->addComponent(objects::THERMAL_CONTROLLER);
// if (result != returnvalue::OK) {
// scheduling::printAddObjectError("THERMAL_CONTROLLER", objects::THERMAL_CONTROLLER);
// }
result = thermalTask->addComponent(objects::THERMAL_CONTROLLER);
if (result != returnvalue::OK) {
scheduling::printAddObjectError("THERMAL_CONTROLLER", objects::THERMAL_CONTROLLER);
}
FixedTimeslotTaskIF* pstTask = factory->createFixedTimeslotTask(
"DUMMY_PST", 75, PeriodicTaskIF::MINIMUM_STACK_SIZE * 4, 0.5, missedDeadlineFunc);