replaced old semaph api
This commit is contained in:
@ -1,10 +1,19 @@
|
||||
#include <framework/osal/FreeRTOS/CountingSemaphUsingTask.h>
|
||||
#include <framework/osal/FreeRTOS/TaskManagement.h>
|
||||
#include <framework/serviceinterface/ServiceInterfaceStream.h>
|
||||
|
||||
CountingSemaphoreUsingTask::CountingSemaphoreUsingTask(uint8_t count,
|
||||
uint8_t initCount):
|
||||
count(count), initCount(initCount) {
|
||||
CountingSemaphoreUsingTask::CountingSemaphoreUsingTask(uint8_t maxCount,
|
||||
uint8_t initCount): maxCount(maxCount) {
|
||||
if(initCount > maxCount) {
|
||||
sif::error << "CountingSemaphoreUsingTask: Max count bigger than "
|
||||
"intial cout. Setting initial count to max count." << std::endl;
|
||||
initCount = maxCount;
|
||||
}
|
||||
handle = TaskManagement::getCurrentTaskHandle();
|
||||
while(currentCount != initCount) {
|
||||
xTaskNotifyGive(handle);
|
||||
currentCount++;
|
||||
}
|
||||
}
|
||||
|
||||
ReturnValue_t CountingSemaphoreUsingTask::acquire(
|
||||
|
Reference in New Issue
Block a user