DWC queue implementation.
Go to the source code of this file.
Data Structures | |
| struct | dwc_queue_t |
| A structure representing a queue for managing data. More... | |
Macros | |
| #define | DWC_QUEUE_SIZE (8U) |
Functions | |
| void | dwc_queueInit (dwc_queue_t *queue) |
| This routine initializes the queue. More... | |
| bool | dwc_queuePut (dwc_queue_t *queue, uint32_t data) |
| This routine adds an element to the queue. More... | |
| bool | dwc_queueGet (dwc_queue_t *queue, uint32_t *data) |
| This routine retrieves an elements from the queue. More... | |
| #define DWC_QUEUE_SIZE (8U) |
============================================================================