pub unsafe extern "C" fn xQueuePeekFromISR(
    xQueue: QueueHandle_t,
    pvBuffer: *mut c_void
) -> BaseType_t
Expand description

@cond !DOC_EXCLUDE_HEADER_SECTION queue. h @code{c} BaseType_t xQueuePeekFromISR( QueueHandle_t xQueue, void *pvBuffer, ); @endcode @endcond

A version of xQueuePeek() that can be called from an interrupt service routine (ISR).

Receive an item from a queue without removing the item from the queue. The item is received by copy so a buffer of adequate size must be provided. The number of bytes copied into the buffer was defined when the queue was created.

Successfully received items remain on the queue so will be returned again by the next call, or a call to xQueueReceive().

@param xQueue The handle to the queue from which the item is to be received.

@param pvBuffer Pointer to the buffer into which the received item will be copied.

@return pdTRUE if an item was successfully received from the queue, otherwise pdFALSE.

@cond !DOC_SINGLE_GROUP \defgroup xQueuePeekFromISR xQueuePeekFromISR @endcond \ingroup QueueManagement