Removed signal wait all

This commit is contained in:
dario 2024-06-28 18:09:31 +02:00
parent 736b90c602
commit a646493334
2 changed files with 0 additions and 7 deletions

View File

@ -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 */
};

View File

@ -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