forked from ejholmes/Arduino-Telescope--Embedded-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMessenger.h
51 lines (37 loc) · 1.04 KB
/
Messenger.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef Messenger_h
#define Messenger_h
#define MESSENGERBUFFERSIZE 64
#include <inttypes.h>
extern "C" {
// callback function
typedef void (*messengerCallbackFunction)(void);
}
class Messenger
{
public:
Messenger();
Messenger(char separator);
int readInt();
long readLong(); // Added based on a suggestion by G. Paolo Sani
char readChar();
void copyString(char *string, uint8_t size);
uint8_t checkString(char *string);
uint8_t process(int serialByte);
uint8_t available();
void attach(messengerCallbackFunction newFunction);
char buffer[MESSENGERBUFFERSIZE]; // Buffer that holds the data
private:
void init(char separator);
uint8_t next();
void reset();
uint8_t messageState;
messengerCallbackFunction callback;
char* current; // Pointer to current data
char* last;
char token[2];
uint8_t dumped;
uint8_t bufferIndex; // Index where to write the data
uint8_t bufferLength; // The length of the buffer (defaults to 64)
uint8_t bufferLastIndex; // The last index of the buffer
};
#endif