mirror of
https://github.com/JorjBauer/aiie.git
synced 2024-11-16 21:06:38 +00:00
35 lines
583 B
C++
35 lines
583 B
C++
#ifndef __RINGBUFFER_H
|
|
#define __RINGBUFFER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
class RingBuffer {
|
|
public:
|
|
RingBuffer(int16_t length);
|
|
~RingBuffer();
|
|
|
|
void clear();
|
|
|
|
bool isFull();
|
|
bool hasData();
|
|
bool addByte(uint8_t b);
|
|
bool addBytes(uint8_t *b, int count);
|
|
bool replaceByte(uint8_t b);
|
|
uint8_t consumeByte();
|
|
uint8_t peek(int16_t idx);
|
|
uint16_t getPeekCursor();
|
|
void setPeekCursor(int16_t idx);
|
|
void resetPeekCursor();
|
|
uint8_t peekNext();
|
|
int16_t count();
|
|
|
|
private:
|
|
uint8_t *buffer;
|
|
int16_t max;
|
|
int16_t ptr;
|
|
int16_t fill;
|
|
int16_t cursor;
|
|
};
|
|
|
|
#endif
|