Function esp_idf_hal::sys::xRingbufferSendComplete
source ยท pub unsafe extern "C" fn xRingbufferSendComplete(
xRingbuffer: *mut c_void,
pvItem: *mut c_void,
) -> i32
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.