os_port_zephyr.c
void osSetEvent(OsEvent *event)
Set the specified event object to the signaled state.
Definition: os_port_zephyr.c:220
OsTaskId osCreateTask(const char_t *name, OsTaskCode taskCode, void *arg, const OsTaskParameters *params)
Create a task.
Definition: os_port_zephyr.c:78
void osReleaseMutex(OsMutex *mutex)
Release ownership of the specified mutex object.
Definition: os_port_zephyr.c:444
void osDeleteSemaphore(OsSemaphore *semaphore)
Delete a semaphore object.
Definition: os_port_zephyr.c:331
void osReleaseSemaphore(OsSemaphore *semaphore)
Release the specified semaphore object.
Definition: os_port_zephyr.c:383
void osAcquireMutex(OsMutex *mutex)
Acquire ownership of the specified mutex object.
Definition: os_port_zephyr.c:432
bool_t osWaitForSemaphore(OsSemaphore *semaphore, systime_t timeout)
Wait for the specified semaphore to be available.
Definition: os_port_zephyr.c:345
bool_t osSetEventFromIsr(OsEvent *event)
Set an event object to the signaled state from an interrupt service routine.
Definition: os_port_zephyr.c:288
bool_t osWaitForEvent(OsEvent *event, systime_t timeout)
Wait until the specified event is in the signaled state.
Definition: os_port_zephyr.c:247
RTOS abstraction layer (Zephyr)
bool_t osCreateSemaphore(OsSemaphore *semaphore, uint_t count)
Create a semaphore object.
Definition: os_port_zephyr.c:307
__weak_func void osFreeMem(void *p)
Release a previously allocated memory block.
Definition: os_port_zephyr.c:507
RTOS abstraction layer.
void osResetEvent(OsEvent *event)
Set the specified event object to the nonsignaled state.
Definition: os_port_zephyr.c:232
Debugging facilities.