xRingbufferReceiveFromISR() is only used within ESP-IDF.
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsReferences

Return value

- Pointer to the retrieved item on success; *pxItemSize filled with the length of the item. - NULL when the ring buffer is empty, *pxItemSize is untouched in that case.

Notes

A call to vRingbufferReturnItemFromISR() is required after this to free the item retrieved. Byte buffers do not allow multiple retrievals before returning an item Two calls to RingbufferReceiveFromISR() are required if the bytes wrap around the end of the ring buffer. It is possible to receive items with a pxItemSize of 0 on no-split/allow split buffers.

References

from examples