-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathFlowControl.cpp
45 lines (36 loc) · 1.31 KB
/
FlowControl.cpp
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
#include <chrono>
#include <thread>
#include "CppLinuxSerial/SerialPort.hpp"
using namespace std::chrono_literals;
using namespace mn::CppLinuxSerial;
int main() {
// This example relies on a serial device which echos serial data at 9600 baud, 8n1.
std::cout << __FILE__ << "::" << __func__ << " called." << std::endl;
SerialPort serialPort("/dev/ttyACM0", BaudRate::B_9600, NumDataBits::EIGHT, Parity::NONE, NumStopBits::ONE, HardwareFlowControl::ON, SoftwareFlowControl::OFF);
serialPort.SetTimeout(1000); // Block when reading for 1000ms
serialPort.Open();
std::this_thread::sleep_for(100ms);
std::thread t1([&]() {
// Do Something
for (int x = 0; x < 10; x++) {
// std::this_thread::sleep_for(100ms);
std::cout << "Reading" << std::endl;
std::string readData;
serialPort.Read(readData);
std::cout << "readData: " << readData << std::endl;
}
});
std::thread t2([&]() {
// Do Something
std::this_thread::sleep_for(100ms);
for (int x = 0; x < 10; x++) {
std::this_thread::sleep_for(100ms);
std::cout << "Writing \"Hello\"" << std::endl;
serialPort.Write("Hello");
}
});
t1.join();
t2.join();
serialPort.Close();
return 0;
}