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
|
/**
* @example serial_port_read.cpp
*/
#include <libserial/SerialPort.h>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <unistd.h>
constexpr const char* const SERIAL_PORT_1 = "/dev/ttyUSB0" ;
/**
* @brief This example demonstrates configuring a serial port and
* reading serial data.
*/
int main()
{
using namespace LibSerial ;
// Instantiate a SerialPort object.
SerialPort serial_port ;
try
{
// Open the Serial Port at the desired hardware port.
serial_port.Open(SERIAL_PORT_1) ;
}
catch (const OpenFailed&)
{
std::cerr << "The serial port did not open correctly." << std::endl ;
return EXIT_FAILURE ;
}
// Set the baud rate of the serial port.
serial_port.SetBaudRate(BaudRate::BAUD_115200) ;
// Set the number of data bits.
serial_port.SetCharacterSize(CharacterSize::CHAR_SIZE_8) ;
// Turn off hardware flow control.
serial_port.SetFlowControl(FlowControl::FLOW_CONTROL_NONE) ;
// Disable parity.
serial_port.SetParity(Parity::PARITY_NONE) ;
// Set the number of stop bits.
serial_port.SetStopBits(StopBits::STOP_BITS_1) ;
// Wait for data to be available at the serial port.
while(!serial_port.IsDataAvailable())
{
usleep(1000) ;
}
// Specify a timeout value (in milliseconds).
size_t ms_timeout = 250 ;
// Char variable to store data coming from the serial port.
char data_byte ;
// Read one byte from the serial port and print it to the terminal.
try
{
// Read a single byte of data from the serial port.
serial_port.ReadByte(data_byte, ms_timeout) ;
// Show the user what is being read from the serial port.
std::cout << data_byte << std::flush ;
}
catch (const ReadTimeout&)
{
std::cerr << "\nThe ReadByte() call has timed out." << std::endl ;
}
// Wait a brief period for more data to arrive.
usleep(1000) ;
DataBuffer read_buffer ;
try
{
// Read as many bytes as are available during the timeout period.
serial_port.Read(read_buffer, 0, ms_timeout) ;
}
catch (const ReadTimeout&)
{
for (size_t i = 0 ; i < read_buffer.size() ; i++)
{
std::cout << read_buffer.at(i) << std::flush ;
}
std::cerr << "The Read() call timed out waiting for additional data." << std::endl ;
}
// Successful program completion.
std::cout << "The example program successfully completed!" << std::endl ;
return EXIT_SUCCESS ;
}
|