added binary semaphore header stub

This commit is contained in:
2021-07-19 18:40:35 +02:00
parent ee4449b74d
commit ab6c616cdb
2 changed files with 24 additions and 2 deletions
+1 -2
View File
@@ -1,4 +1,4 @@
#include "fsfw/osal/rtems/BinarySemaphore.h"
#include "BinarySemaphore.h"
#include <rtems/rtems/sem.h>
@@ -9,7 +9,6 @@ BinarySemaphore::~BinarySemaphore() {
}
// Interface implementation
ReturnValue_t BinarySemaphore::acquire(TimeoutType timeoutType, uint32_t timeoutMs) {
return HasReturnvaluesIF::RETURN_OK;
}