xRingbufferSendFromISR() function
Insert an item into the ring buffer in an ISR Attempt to insert an item into the ring buffer from an ISR. This function will return immediately if there is insufficient free space in the buffer.
Arguments
xRingbuffer
Ring buffer to insert the item into
pvItem
Pointer to data to insert. NULL is allowed if xItemSize is 0.
xItemSize
Size of data to insert.
pxHigherPriorityTaskWoken
Value pointed to will be set to pdTRUE if the function woke up a higher priority task.
Return value
- pdTRUE if succeeded - pdFALSE when the ring buffer does not have space.
Notes
For no-split/allow-split ring buffers, the actual size of memory that the item will occupy will be rounded up to the nearest 32-bit aligned size. This is done to ensure all items are always stored in 32-bit aligned fashion. For no-split/allow-split buffers, an xItemSize of 0 will result in an item with no data being set (i.e., item only contains the header). For byte buffers, an xItemSize of 0 will simply return pdTRUE without copying any data.