Queue structure.
This structure defines the queue structure. The application should declare the queue of type queue_t and call miQueueinit before invoking any other functionality of qmm.
#include <miqueue.h>
Data Fields | |
miQueueBuffer_t * | head |
Pointer to head of queue. More... | |
uint8_t | size |
Number of buffers present in the current queue. More... | |
miQueueBuffer_t * | tail |
Pointer to tail of queue. More... | |