Function esp_idf_sys::xQueueIsQueueFullFromISR
source ยท pub unsafe extern "C" fn xQueueIsQueueFullFromISR(
xQueue: QueueHandle_t,
) -> BaseType_t
Expand description
Queries a queue to determine if the queue is full. This function should only be used in an ISR.
@param xQueue The handle of the queue being queried @return pdFALSE if the queue is not full, or pdTRUE if the queue is full.