Fixed deadline missed call on linux

This commit is contained in:
Steffen Gaisser 2022-06-20 15:02:16 +02:00
parent d47a908117
commit 7f57a8784a
1 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,9 @@ ReturnValue_t FixedTimeslotTask::sleepFor(uint32_t ms) {
// If the deadline was missed, the deadlineMissedFunc is called.
if (!PosixThread::delayUntil(&lastWakeTime, interval)) {
// No time left on timer -> we missed the deadline
missedDeadlineCounter();
if(dlmFunc != nullptr){
dlmFunc();
}
}
}
// The device handler for this slot is executed and the next one is chosen.