fsfw/src/fsfw/osal/rtems/BinarySemaphore.cpp
Ulrich Mohr e37af4fe70
All checks were successful
fsfw/fsfw/pipeline/head This commit looks good
format
2023-01-26 13:40:44 +01:00

18 lines
400 B
C++

#include "BinarySemaphore.h"
#include <rtems/rtems/sem.h>
// TODO
BinarySemaphore::BinarySemaphore() {}
BinarySemaphore::~BinarySemaphore() {}
ReturnValue_t BinarySemaphore::acquire(TimeoutType timeoutType, uint32_t timeoutMs) {
return returnvalue::OK;
}
ReturnValue_t BinarySemaphore::release() { return returnvalue::OK; }
uint8_t BinarySemaphore::getSemaphoreCounter() const { return 0; }