mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-06-10 01:55:59 +00:00
Removed signal wait all
This commit is contained in:
parent
736b90c602
commit
a646493334
@ -47,8 +47,6 @@ namespace sta
|
||||
* @return Event flags before clearing or error code if highest bit set.
|
||||
*/
|
||||
uint32_t wait(uint32_t flags, uint32_t timeout = osWaitForever) override;
|
||||
|
||||
uint32_t waitAll(uint32_t flags, uint32_t timeout = osWaitForever) override;
|
||||
private:
|
||||
osEventFlagsId_t event_id; /**< CMSIS RTOS2 Event Flag */
|
||||
};
|
||||
|
@ -26,9 +26,4 @@ namespace sta {
|
||||
return osEventFlagsWait(event_id, flags, osFlagsWaitAny, timeout);
|
||||
}
|
||||
|
||||
uint32_t RtosEvent::waitAll(uint32_t flags, uint32_t timeout /* = osWaitForever */)
|
||||
{
|
||||
return osEventFlagsWait(event_id, flags, osFlagsWaitAll, timeout);
|
||||
}
|
||||
|
||||
} // namespace sta
|
||||
|
Loading…
x
Reference in New Issue
Block a user