firmware
IEM Firmware Documentation
Loading...
Searching...
No Matches
xStreamBufferBytesAvailable
Collaboration diagram for xStreamBufferBytesAvailable:

stream_buffer.h

struct StreamBufferDef_t * StreamBufferHandle_t
Definition stream_buffer.h:79
size_t xStreamBufferBytesAvailable(StreamBufferHandle_t xStreamBuffer) PRIVILEGED_FUNCTION

Queries a stream buffer to see how much data it contains, which is equal to the number of bytes that can be read from the stream buffer before the stream buffer would be empty.

configUSE_STREAM_BUFFERS must be set to 1 in for FreeRTOSConfig.h for xStreamBufferBytesAvailable() to be available.

Parameters
xStreamBufferThe handle of the stream buffer being queried.
Returns
The number of bytes that can be read from the stream buffer before the stream buffer would be empty.