-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerial.hpp
73 lines (57 loc) · 1.79 KB
/
Serial.hpp
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
// Serial.hpp
// testSerial
//
// Created by Ryan Homer on 2021-07-24.
//
#ifndef Serial_hpp
#define Serial_hpp
#include <stdint.h>
#include <termios.h>
#include <string>
using namespace std;
class Serial {
private:
int _fd = -1; // file descriptor
speed_t _baudrate = B9600;
unsigned short _stopBits = 1;
unsigned short _bitSize = CS8;
inline static const uint16_t _bufSz = 256;
char _buf[_bufSz];
public:
string port;
// bit flags
uint8_t parity:1 = false;
private:
static void updateTtyFlag(tcflag_t& flag, int mask, bool set) {
if (set) flag |= mask;
else flag &= ~mask;
}
static void setTtyFlagBits(tcflag_t& flag, int mask) { updateTtyFlag(flag, mask, true); }
static void clearTtyFlagBits(tcflag_t& flag, int mask) { updateTtyFlag(flag, mask, false); }
static unsigned short mapBitSizeToMask(unsigned short bitSize);
void updateTty(struct termios& tty);
public:
Serial() {};
Serial(const string &port,
speed_t baudrate = B9600,
bool parity = false,
unsigned short stopBits = 1,
unsigned short bitSize = 8);
// Don't allow copies to be made
Serial(const Serial&) = delete;
Serial& operator=(const Serial&) = delete;
Serial(Serial&&) = default;
Serial& operator=(Serial&&) = default;
void setBaudrate(speed_t baudrate);
speed_t getBaudrate() const { return _baudrate; }
void setStopBits(unsigned short stopBits);
unsigned short getStopBits() const { return _stopBits; }
void setBitSize(unsigned short bitSize);
unsigned short getBitSize() const { return _bitSize; }
void open();
void write(const string &str);
const string read();
void close();
};
#endif /* Serial_hpp */