Function esp_idf_svc::sys::xQueueIsQueueFullFromISR
source ยท pub unsafe extern "C" fn xQueueIsQueueFullFromISR(
xQueue: *mut QueueDefinition,
) -> i32
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.