[][src]Function esp_idf_sys::xRingbufferAddToQueueSetRead

pub unsafe extern "C" fn xRingbufferAddToQueueSetRead(
    xRingbuffer: RingbufHandle_t,
    xQueueSet: QueueSetHandle_t
) -> BaseType_t

@brief Add the ring buffer's read semaphore to a queue set.

The ring buffer's read semaphore indicates that data has been written to the ring buffer. This function adds the ring buffer's read semaphore to a queue set.

@param[in] xRingbuffer Ring buffer to add to the queue set @param[in] xQueueSet Queue set to add the ring buffer's read semaphore to

@return - pdTRUE on success, pdFALSE otherwise