Collaboration diagram for Defines:Macros | |
| #define | SEM_WAIT_FOREVER (0xFFFFUL) |
| #define | SEM_NO_WAIT (0) |
| #define | MUTEX_WAIT_FOREVER (0xFFFFUL) |
| #define | MUTEX_NO_WAIT (0) |
| #define | APP_DRV_SEM_DECL(sem) sem_t sem |
| Define a semaphore instance. More... | |
| #define | APP_DRV_MUTEX_DECL(mutex) mutex_t mutex |
| Define a mutex instance. More... | |
| #define | app_driver_sem_init(x) (0) |
| #define | app_driver_sem_deinit(x) |
| #define | app_driver_sem_pend(x, y) (0) |
| #define | app_driver_sem_post(x) |
| #define | app_driver_sem_post_from_isr(x) |
| #define | app_driver_mutex_init(x) (0) |
| #define | app_driver_mutex_deinit(x) |
| #define | app_driver_mutex_pend(x, y) |
| #define | app_driver_mutex_post(x) |
| #define app_driver_mutex_deinit | ( | x | ) |
Definition at line 259 of file app_rtos_cfg.h.
| #define app_driver_mutex_init | ( | x | ) | (0) |
Definition at line 258 of file app_rtos_cfg.h.
| #define app_driver_mutex_pend | ( | x, | |
| y | |||
| ) |
Definition at line 260 of file app_rtos_cfg.h.
| #define app_driver_mutex_post | ( | x | ) |
Definition at line 261 of file app_rtos_cfg.h.
| #define app_driver_sem_deinit | ( | x | ) |
Definition at line 253 of file app_rtos_cfg.h.
| #define app_driver_sem_init | ( | x | ) | (0) |
Definition at line 252 of file app_rtos_cfg.h.
| #define app_driver_sem_pend | ( | x, | |
| y | |||
| ) | (0) |
Definition at line 254 of file app_rtos_cfg.h.
| #define app_driver_sem_post | ( | x | ) |
Definition at line 255 of file app_rtos_cfg.h.
| #define app_driver_sem_post_from_isr | ( | x | ) |
Definition at line 256 of file app_rtos_cfg.h.
| #define APP_DRV_MUTEX_DECL | ( | mutex | ) | mutex_t mutex |
Define a mutex instance.
Definition at line 127 of file app_rtos_cfg.h.
| #define APP_DRV_SEM_DECL | ( | sem | ) | sem_t sem |
Define a semaphore instance.
Definition at line 126 of file app_rtos_cfg.h.
| #define MUTEX_NO_WAIT (0) |
Definition at line 118 of file app_rtos_cfg.h.
| #define MUTEX_WAIT_FOREVER (0xFFFFUL) |
Definition at line 117 of file app_rtos_cfg.h.
| #define SEM_NO_WAIT (0) |
Definition at line 115 of file app_rtos_cfg.h.
| #define SEM_WAIT_FOREVER (0xFFFFUL) |
Definition at line 114 of file app_rtos_cfg.h.