removed dbeug printout
This commit is contained in:
parent
22d9b77165
commit
7dbb73b7d8
@ -150,15 +150,6 @@ void FixedTimeslotTask::handleMissedDeadline() {
|
||||
if(deadlineMissedFunc != nullptr) {
|
||||
this->deadlineMissedFunc();
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
object_id_t handlerId = pst.current->handlerId;
|
||||
sif::warning << "FixedTimeslotTask: " << pcTaskGetName(NULL) << " with"
|
||||
<< " object ID 0x" << std::setfill('0') << std::setw(8) << std::hex
|
||||
<< handlerId << " missed deadline!" << std::setfill(' ')
|
||||
<< std::dec << std::endl;
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
ReturnValue_t FixedTimeslotTask::sleepFor(uint32_t ms) {
|
||||
|
@ -133,10 +133,6 @@ TaskHandle_t PeriodicTask::getTaskHandle() {
|
||||
}
|
||||
|
||||
void PeriodicTask::handleMissedDeadline() {
|
||||
#ifdef DEBUG
|
||||
sif::warning << "PeriodicTask: " << pcTaskGetName(NULL) <<
|
||||
" missed deadline!\n" << std::flush;
|
||||
#endif
|
||||
if(deadlineMissedFunc != nullptr) {
|
||||
this->deadlineMissedFunc();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user