mirror of
https://github.com/wjwwood/serial.git
synced 2026-01-22 19:54:57 +08:00
Testing the new buffer
This commit is contained in:
parent
7b027d39ef
commit
119be4630e
@ -18,7 +18,7 @@ int run(int argc, char **argv)
|
|||||||
sscanf(argv[2], "%lu", &baud);
|
sscanf(argv[2], "%lu", &baud);
|
||||||
|
|
||||||
// port, baudrate, timeout in milliseconds
|
// port, baudrate, timeout in milliseconds
|
||||||
serial::Serial serial(port, baud, 1000);
|
serial::Serial serial(port, baud, 30000);
|
||||||
|
|
||||||
std::cout << "Is the serial port open?";
|
std::cout << "Is the serial port open?";
|
||||||
if(serial.isOpen())
|
if(serial.isOpen())
|
||||||
@ -28,7 +28,7 @@ int run(int argc, char **argv)
|
|||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
while (count >= 0) {
|
while (count >= 0) {
|
||||||
size_t bytes_wrote = serial.write("Testing.");
|
size_t bytes_wrote = serial.write("Testing.\n");
|
||||||
std::string result = serial.readline();
|
std::string result = serial.readline();
|
||||||
std::cout << ">" << count << ">" << bytes_wrote << ">";
|
std::cout << ">" << count << ">" << bytes_wrote << ">";
|
||||||
std::cout << result.length() << "<" << result << std::endl;
|
std::cout << result.length() << "<" << result << std::endl;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user