Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Updated Apr 2025

xQueueGetStaticBuffers()

[Queue Management]

queue.h

1 BaseType_t xQueueGetStaticBuffers( QueueHandle_t xQueue,
2 uint8_t ** ppucQueueStorage,
3 StaticQueue_t ** ppxStaticQueue );

configSUPPORT_STATIC_ALLOCATION
must be defined as 1 for this function to be available. See the RTOS Configuration documentation for more information.

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:

  • xQueue

    The queue whose data structure buffer and storage area buffer will be retrieved.

  • ppucQueueStorage

    Used to return a pointer to the queue's storage area buffer.

  • ppxStaticQueue

    Used to return a pointer to the queue's data structure buffer.

Returns:

  • pdTRUE
    if the buffers were retrieved,
  • pdFALSE
    otherwise.