replaced break with continue

This commit is contained in:
Robin Müller 2020-06-22 19:06:10 +02:00
parent 109fdad8b3
commit 3b2fa978e1

View File

@ -118,7 +118,7 @@ void FixedTimeslotTask::taskFunctionality() {
this->deadlineMissedFunc(); this->deadlineMissedFunc();
} }
// Continue immediately, no need to wait. // Continue immediately, no need to wait.
break; continue;
} }
// we need to wait before executing the current slot // we need to wait before executing the current slot