NMEA2000 Library
0.1
Library to handle NMEA 2000 Communication written in C++
|
Structure that holds the actual value and meta data. More...
#include <RingBuffer.h>
Public Attributes | |
uint16_t | next |
Index of the next value in the ring buffer (???) More... | |
uint8_t | priority |
Priority of this value. More... | |
T | Value |
Value stored in ring buffer. More... | |
Structure that holds the actual value and meta data.
In order to handle all the data entries in the ring buffer with certain priority some additional meta data has to be stored as well.
Definition at line 270 of file RingBuffer.h.
uint16_t tPriorityRingBuffer< T >::tValueSlot::next |
Index of the next value in the ring buffer (???)
Definition at line 274 of file RingBuffer.h.
uint8_t tPriorityRingBuffer< T >::tValueSlot::priority |
Priority of this value.
Definition at line 276 of file RingBuffer.h.
T tPriorityRingBuffer< T >::tValueSlot::Value |
Value stored in ring buffer.
Definition at line 272 of file RingBuffer.h.