Searched defs:RingbufferDefinition (Results 1 – 1 of 1) sorted by relevance
63 typedef struct RingbufferDefinition { struct64 size_t xSize; //Size of the data storage65 size_t xMaxItemSize; //Maximum item size66 … UBaseType_t uxRingbufferFlags; //Flags to indicate the type and status of ring buffer68 …ItemFitsFunction_t xCheckItemFits; //Function to check if item can currently fit in ring buffer69 CopyItemFunction_t vCopyItem; //Function to copy item to ring buffer70 GetItemFunction_t pvGetItem; //Function to get item from ring buffer71 ReturnItemFunction_t vReturnItem; //Function to return item to ring buffer72 GetCurMaxSizeFunction_t xGetCurMaxSize; //Function to get current free size74 …cquire; //Acquire Pointer. Points to where the next item should be acquired.[all …]