pub unsafe extern "C" fn xRingbufferSendComplete(
    xRingbuffer: RingbufHandle_t,
    pvItem: *mut c_void
) -> BaseType_t
Expand description

@brief Actually send an item into the ring buffer allocated before by xRingbufferSendAcquire.

@param[in] xRingbuffer Ring buffer to insert the item into @param[in] pvItem Pointer to item in allocated memory to insert.

@note Only applicable for no-split ring buffers. Only call for items allocated by xRingbufferSendAcquire.

@return - pdTRUE if succeeded - pdFALSE if fail for some reason.