-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserial.h
65 lines (54 loc) · 1.21 KB
/
serial.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#ifndef _SERIAL_H_
#define _SERIAL_H_
#include <stdint.h>
#include <cstdlib>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <string.h>
#include <string>
#define LINUX 1
#if defined(LINUX)
#include <termios.h>
#elif defined(MACOSX)
#include <termios.h>
#elif defined(WINDOWS)
#include <windows.h>
#endif
class Serial{
public:
Serial();
~Serial();
std::string error_message(void);
std::vector<std::string> port_list(void);
std::string get_port_name(int);
int Open(const std::string& name);
int Set_baud(int baud);
int Set_baud(const std::string& baud_str);
int Read(void *ptr, int count);
int Write(const void *ptr, int len);
int Input_wait(int msec);
void Input_discard(void);
int Set_control(int dtr, int rts);
void Output_flush(void);
void Close(void);
bool Is_open(void);
std::string get_name(void);
private:
std::vector<std::string> list;
bool port_is_open;
std::string port_name;
int baud_rate;
std::string error_msg;
private:
#if defined(LINUX) || defined(MACOSX)
int port_fd;
struct termios settings_orig;
struct termios settings;
#elif defined(WINDOWS)
HANDLE port_handle;
COMMCONFIG port_cfg_orig;
COMMCONFIG port_cfg;
#endif
};
#endif // _SERIAL_H_