mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-08-06 11:07:34 +00:00
Updated id handling for mutex and signal, sleep() for thread.
This commit is contained in:
@@ -23,7 +23,7 @@ namespace sta
|
||||
/**
|
||||
* @param semaphore CMSIS RTOS2 semaphore
|
||||
*/
|
||||
RtosSignal(osSemaphoreId_t * semaphore);
|
||||
RtosSignal(osSemaphoreId_t semaphore);
|
||||
|
||||
void notify() override;
|
||||
bool peek() override;
|
||||
@@ -31,7 +31,7 @@ namespace sta
|
||||
void wait() override;
|
||||
|
||||
private:
|
||||
osSemaphoreId_t * semaphore_; /**< CMSIS RTOS2 semaphore */
|
||||
osSemaphoreId_t semaphore_; /**< CMSIS RTOS2 semaphore */
|
||||
};
|
||||
} // namespace sta
|
||||
|
||||
|
Reference in New Issue
Block a user