some more sif replacements

This commit is contained in:
2020-04-23 21:59:24 +02:00
parent 0ea692a5ea
commit a5d2cbd7db
6 changed files with 19 additions and 19 deletions

View File

@ -67,7 +67,7 @@ ReturnValue_t FixedTimeslotTask::addSlot(object_id_t componentId,
return HasReturnvaluesIF::RETURN_OK;
}
error << "Component " << std::hex << componentId
sif::error << "Component " << std::hex << componentId
<< " not found, not adding it to pst" << std::endl;
return HasReturnvaluesIF::RETURN_FAILED;
}

View File

@ -7,7 +7,7 @@ const uint32_t MutexIF::NO_TIMEOUT = 0;
Mutex::Mutex() {
handle = xSemaphoreCreateMutex();
if(handle == NULL) {
error << "Mutex creation failure" << std::endl;
sif::error << "Mutex creation failure" << std::endl;
}
}