1
0
forked from fsfw/fsfw

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

@ -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;
}
}