1
0
forked from fsfw/fsfw

improved documentation

This commit is contained in:
2020-05-27 19:59:59 +02:00
parent eabee85ba9
commit 7145982b4a
3 changed files with 9 additions and 2 deletions

View File

@ -19,7 +19,7 @@ ReturnValue_t BinarySemaphoreUsingTask::takeBinarySemaphore(uint32_t timeoutMs)
if(timeoutMs == SemaphoreIF::MAX_TIMEOUT) {
timeout = SemaphoreIF::MAX_TIMEOUT;
}
else if(timeoutMs > BinarySemaphoreUsingTask::NO_TIMEOUT){
else if(timeoutMs > SemaphoreIF::NO_TIMEOUT){
timeout = pdMS_TO_TICKS(timeoutMs);
}