seperation of semaph implementations finished
This commit is contained in:
8
osal/FreeRTOS/CountingSemaphUsingTask.cpp
Normal file
8
osal/FreeRTOS/CountingSemaphUsingTask.cpp
Normal file
@ -0,0 +1,8 @@
|
||||
#include <framework/osal/FreeRTOS/CountingSemaphUsingTask.h>
|
||||
#include <framework/osal/FreeRTOS/TaskManagement.h>
|
||||
|
||||
CountingSemaphoreUsingTask::CountingSemaphoreUsingTask(uint8_t count,
|
||||
uint8_t initCount):
|
||||
count(count), initCount(initCount) {
|
||||
handle = TaskManagement::getCurrentTaskHandle();
|
||||
}
|
Reference in New Issue
Block a user