lower live TM handler frequency
All checks were successful
EIVE/eive-obsw/pipeline/pr-main This commit looks good

This commit is contained in:
Robin Müller 2023-04-26 17:38:06 +02:00
parent a296f16e5c
commit 03762f9620
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814

View File

@ -90,9 +90,9 @@ void scheduling::initTasks() {
if (result != returnvalue::OK) {
sif::error << "Add component UDP Polling failed" << std::endl;
}
// All the TM store tasks run in permanent loops, frequency does not matter
PeriodicTaskIF* liveTmTask = factory->createPeriodicTask(
"LIVE_TM", 55, PeriodicTaskIF::MINIMUM_STACK_SIZE, 1.0, nullptr, &RR_SCHEDULING);
"LIVE_TM", 55, PeriodicTaskIF::MINIMUM_STACK_SIZE, 0.4, nullptr, &RR_SCHEDULING);
result = liveTmTask->addComponent(objects::LIVE_TM_TASK);
if (result != returnvalue::OK) {
scheduling::printAddObjectError("LIVE_TM", objects::LIVE_TM_TASK);