-
Notifications
You must be signed in to change notification settings - Fork 7
/
serial_port.h
198 lines (140 loc) · 5.62 KB
/
serial_port.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*************************************************************************/
/* serial_port.h */
/*************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/*************************************************************************/
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#ifndef SERIAL_PORT_H
#define SERIAL_PORT_H
#ifdef GDEXTENSION
#include <godot_cpp/templates/vector.hpp>
#include <godot_cpp/variant/builtin_types.hpp>
using namespace godot;
#else
#include "core/string/ustring.h"
#include "core/templates/vector.h"
#include "core/variant/array.h"
#include "core/variant/dictionary.h"
#endif
#include "serial/serial.h"
#include <atomic>
#include <thread>
using namespace serial;
class SerialPort : public Object {
GDCLASS(SerialPort, Object);
static void _thread_func(void *p_user_data);
Serial *serial;
int monitoring_interval = 10000;
std::atomic<bool> fine_working = false;
std::atomic<bool> monitoring_should_exit = true;
std::thread thread;
String error_message = "";
void _data_received(const PackedByteArray &buf);
public:
enum ByteSize {
BYTESIZE_5 = fivebits,
BYTESIZE_6 = sixbits,
BYTESIZE_7 = sevenbits,
BYTESIZE_8 = eightbits,
};
enum Parity {
PARITY_NONE = parity_none,
PARITY_ODD = parity_odd,
PARITY_EVEN = parity_even,
PARITY_MARK = parity_mark,
PARITY_SPACE = parity_space,
};
enum StopBits {
STOPBITS_1 = stopbits_one,
STOPBITS_2 = stopbits_two,
STOPBITS_1P5 = stopbits_one_point_five,
};
enum FlowControl {
FLOWCONTROL_NONE = flowcontrol_none,
FLOWCONTROL_SOFTWARE = flowcontrol_software,
FLOWCONTROL_HARDWARE = flowcontrol_hardware,
};
SerialPort(const String &port = "",
uint32_t baudrate = 9600,
uint32_t timeout = 0,
ByteSize bytesize = BYTESIZE_8,
Parity parity = PARITY_NONE,
StopBits stopbits = STOPBITS_1,
FlowControl flowcontrol = FLOWCONTROL_NONE);
~SerialPort();
static Dictionary list_ports();
bool is_in_error() { return is_open() && !fine_working; }
inline String get_last_error() { return error_message; }
void _on_error(const String &where, const String &what);
Error start_monitoring(uint64_t interval_in_usec = 10000);
void stop_monitoring();
Error open(String port = "");
bool is_open() const;
void close();
size_t available();
bool wait_readable();
void wait_byte_times(size_t count);
PackedByteArray read_raw(size_t size = 1);
String read_str(size_t size = 1, bool utf8_encoding = false);
size_t write_raw(const PackedByteArray &data);
size_t write_str(const String &data, bool utf8_encoding = false);
String read_line(size_t size = 65535, String eol = "\n", bool utf8_encoding = false);
PackedStringArray read_lines(size_t size = 65535, String eol = "\n", bool utf8_encoding = false);
Error set_port(const String &port);
String get_port() const;
Error set_timeout(uint32_t timeout);
uint32_t get_timeout() const;
Error set_baudrate(uint32_t baudrate);
uint32_t get_baudrate() const;
Error set_bytesize(ByteSize bytesize);
ByteSize get_bytesize() const;
Error set_parity(Parity parity);
Parity get_parity() const;
Error set_stopbits(StopBits stopbits);
StopBits get_stopbits() const;
Error set_flowcontrol(FlowControl flowcontrol);
FlowControl get_flowcontrol() const;
Error flush();
Error flush_input();
Error flush_output();
Error send_break(int duration);
Error set_break(bool level = true);
Error set_rts(bool level = true);
Error set_dtr(bool level = true);
bool wait_for_change();
bool get_cts();
bool get_dsr();
bool get_ri();
bool get_cd();
protected:
String _to_string() const;
static void _bind_methods();
};
VARIANT_ENUM_CAST(SerialPort::ByteSize);
VARIANT_ENUM_CAST(SerialPort::Parity);
VARIANT_ENUM_CAST(SerialPort::StopBits);
VARIANT_ENUM_CAST(SerialPort::FlowControl);
#endif // SERIAL_PORT_H