*/\r
\r
/* Buffer Configuration: */\r
- /* Buffer length - select static size of created ringbuffers: */\r
- #define BUFF_STATICSIZE 128 // Set to the static ringbuffer size for all ringbuffers (place size after define)\r
+ /* Buffer length - select static size of created ring buffers: */\r
+ #define BUFF_STATICSIZE 128 // Set to the static ring buffer size for all ring buffers (place size after define)\r
\r
/* Volatile mode - uncomment to make buffers volatile, for use in ISRs, etc: */\r
#define BUFF_VOLATILE // Uncomment to cause all ring buffers to become volatile (and atomic if multi-byte) in access\r
// #define BUFF_DROPNEW // Uncomment to cause full ring buffers to drop the new character when full\r
// #define BUFF_NODROPCHECK // Uncomment to ignore full ring buffer checks - checking left to user!\r
\r
- /* Underflow behaviour - select behaviour when Buffer_GetElement is called with an empty ringbuffer: */\r
- //#define BUFF_EMPTYRETURNSZERO // Uncomment to return 0 when an empty ringbuffer is read\r
- #define BUFF_NOEMPTYCHECK // Uncomment to disable checking of empty ringbuffers - checking left to user!\r
+ /* Underflow behaviour - select behaviour when Buffer_GetElement is called with an empty ring buffer: */\r
+ //#define BUFF_EMPTYRETURNSZERO // Uncomment to return 0 when an empty ring buffer is read\r
+ #define BUFF_NOEMPTYCHECK // Uncomment to disable checking of empty ring buffers - checking left to user!\r
\r
/* Buffer storage type - set the datatype for the stored data */\r
#define BUFF_DATATYPE uint8_t // Change to the data type that is going to be stored into the buffer\r