firmware
IEM Firmware Documentation
Loading...
Searching...
No Matches
xQueueGetStaticBuffers
Collaboration diagram for xQueueGetStaticBuffers:

queue. h

BaseType_t xQueueGetStaticBuffers( QueueHandle_t xQueue,
uint8_t ** ppucQueueStorage,
StaticQueue_t ** ppxStaticQueue );
struct xSTATIC_QUEUE StaticQueue_t
long BaseType_t
Definition portmacro.h:59
struct QueueDefinition * QueueHandle_t
Definition queue.h:51

Retrieve pointers to a statically created queue's data structure buffer and storage area buffer. These are the same buffers that are supplied at the time of creation.

Parameters
xQueueThe queue for which to retrieve the buffers.
ppucQueueStorageUsed to return a pointer to the queue's storage area buffer.
ppxStaticQueueUsed to return a pointer to the queue's data structure buffer.
Returns
pdTRUE if buffers were retrieved, pdFALSE otherwise.