Home
last modified time | relevance | path

Searched defs:RingbufferDefinition (Results 1 – 1 of 1) sorted by relevance

/device/soc/esp/esp32/components/esp_ringbuf/
Dringbuf.c63 typedef struct RingbufferDefinition { struct
64 size_t xSize; //Size of the data storage
65 size_t xMaxItemSize; //Maximum item size
66 … UBaseType_t uxRingbufferFlags; //Flags to indicate the type and status of ring buffer
68 …ItemFitsFunction_t xCheckItemFits; //Function to check if item can currently fit in ring buffer
69 CopyItemFunction_t vCopyItem; //Function to copy item to ring buffer
70 GetItemFunction_t pvGetItem; //Function to get item from ring buffer
71 ReturnItemFunction_t vReturnItem; //Function to return item to ring buffer
72 GetCurMaxSizeFunction_t xGetCurMaxSize; //Function to get current free size
74 …cquire; //Acquire Pointer. Points to where the next item should be acquired.
[all …]