OpenCPN Partial API docs
|
Class that provides a portable serial port interface. More...
#include <serial.h>
Public Member Functions | |
Serial (const std::string &port="", uint32_t baudrate=9600, Timeout timeout=Timeout(), bytesize_t bytesize=eightbits, parity_t parity=parity_none, stopbits_t stopbits=stopbits_one, flowcontrol_t flowcontrol=flowcontrol_none) | |
Creates a Serial object and opens the port if a port is specified, otherwise it remains closed until serial::Serial::open is called. | |
virtual | ~Serial () |
Destructor. | |
void | open () |
Opens the serial port as long as the port is set and the port isn't already open. | |
bool | isOpen () const |
Gets the open status of the serial port. | |
void | close () |
Closes the serial port. | |
size_t | available () |
Return the number of characters in the buffer. | |
bool | waitReadable () |
Block until there is serial data to read or read_timeout_constant number of milliseconds have elapsed. | |
void | waitByteTimes (size_t count) |
Block for a period of time corresponding to the transmission time of count characters at present serial settings. | |
size_t | read (uint8_t *buffer, size_t size) |
Read a given amount of bytes from the serial port into a given buffer. | |
size_t | read (std::vector< uint8_t > &buffer, size_t size=1) |
Read a given amount of bytes from the serial port into a give buffer. | |
size_t | read (std::string &buffer, size_t size=1) |
Read a given amount of bytes from the serial port into a give buffer. | |
std::string | read (size_t size=1) |
Read a given amount of bytes from the serial port and return a string containing the data. | |
size_t | readline (std::string &buffer, size_t size=65536, std::string eol="\n") |
Reads in a line or until a given delimiter has been processed. | |
std::string | readline (size_t size=65536, std::string eol="\n") |
Reads in a line or until a given delimiter has been processed. | |
std::vector< std::string > | readlines (size_t size=65536, std::string eol="\n") |
Reads in multiple lines until the serial port times out. | |
size_t | write (const uint8_t *data, size_t size) |
Write a string to the serial port. | |
size_t | write (const std::vector< uint8_t > &data) |
Write a string to the serial port. | |
size_t | write (const std::string &data) |
Write a string to the serial port. | |
void | setPort (const std::string &port) |
Sets the serial port identifier. | |
std::string | getPort () const |
Gets the serial port identifier. | |
void | setTimeout (Timeout &timeout) |
Sets the timeout for reads and writes using the Timeout struct. | |
void | setTimeout (uint32_t inter_byte_timeout, uint32_t read_timeout_constant, uint32_t read_timeout_multiplier, uint32_t write_timeout_constant, uint32_t write_timeout_multiplier) |
Sets the timeout for reads and writes. | |
Timeout | getTimeout () const |
Gets the timeout for reads in seconds. | |
void | setBaudrate (uint32_t baudrate) |
Sets the baudrate for the serial port. | |
uint32_t | getBaudrate () const |
Gets the baudrate for the serial port. | |
void | setBytesize (bytesize_t bytesize) |
Sets the bytesize for the serial port. | |
bytesize_t | getBytesize () const |
Gets the bytesize for the serial port. | |
void | setParity (parity_t parity) |
Sets the parity for the serial port. | |
parity_t | getParity () const |
Gets the parity for the serial port. | |
void | setStopbits (stopbits_t stopbits) |
Sets the stopbits for the serial port. | |
stopbits_t | getStopbits () const |
Gets the stopbits for the serial port. | |
void | setFlowcontrol (flowcontrol_t flowcontrol) |
Sets the flow control for the serial port. | |
flowcontrol_t | getFlowcontrol () const |
Gets the flow control for the serial port. | |
void | flush () |
Flush the input and output buffers. | |
void | flushInput () |
Flush only the input buffer. | |
void | flushOutput () |
Flush only the output buffer. | |
void | sendBreak (int duration) |
Sends the RS-232 break signal. | |
void | setBreak (bool level=true) |
Set the break condition to a given level. | |
void | setRTS (bool level=true) |
Set the RTS handshaking line to the given level. | |
void | setDTR (bool level=true) |
Set the DTR handshaking line to the given level. | |
bool | waitForChange () |
Blocks until CTS, DSR, RI, CD changes or something interrupts it. | |
bool | getCTS () |
Returns the current status of the CTS line. | |
bool | getDSR () |
Returns the current status of the DSR line. | |
bool | getRI () |
Returns the current status of the RI line. | |
bool | getCD () |
Returns the current status of the CD line. | |
serial::Serial::Serial | ( | const std::string & | port = "" , |
uint32_t | baudrate = 9600 , |
||
Timeout | timeout = Timeout() , |
||
bytesize_t | bytesize = eightbits , |
||
parity_t | parity = parity_none , |
||
stopbits_t | stopbits = stopbits_one , |
||
flowcontrol_t | flowcontrol = flowcontrol_none |
||
) |
Creates a Serial object and opens the port if a port is specified, otherwise it remains closed until serial::Serial::open is called.
port | A std::string containing the address of the serial port, which would be something like 'COM1' on Windows and '/dev/ttyS0' on Linux. |
baudrate | An unsigned 32-bit integer that represents the baudrate |
timeout | A serial::Timeout struct that defines the timeout conditions for the serial port. |
bytesize | Size of each byte in the serial transmission of data, default is eightbits, possible values are: fivebits, sixbits, sevenbits, eightbits |
parity | Method of parity, default is parity_none, possible values are: parity_none, parity_odd, parity_even |
stopbits | Number of stop bits used, default is stopbits_one, possible values are: stopbits_one, stopbits_one_point_five, stopbits_two |
flowcontrol | Type of flowcontrol used, default is flowcontrol_none, possible values are: flowcontrol_none, flowcontrol_software, flowcontrol_hardware |
serial::PortNotOpenedException | |
serial::IOException | |
std::invalid_argument |
uint32_t serial::Serial::getBaudrate | ( | ) | const |
Gets the baudrate for the serial port.
std::invalid_argument |
bytesize_t serial::Serial::getBytesize | ( | ) | const |
flowcontrol_t serial::Serial::getFlowcontrol | ( | ) | const |
Gets the flow control for the serial port.
std::invalid_argument |
parity_t serial::Serial::getParity | ( | ) | const |
std::string serial::Serial::getPort | ( | ) | const |
stopbits_t serial::Serial::getStopbits | ( | ) | const |
Timeout serial::Serial::getTimeout | ( | ) | const |
Gets the timeout for reads in seconds.
bool serial::Serial::isOpen | ( | ) | const |
Gets the open status of the serial port.
void serial::Serial::open | ( | ) |
Opens the serial port as long as the port is set and the port isn't already open.
If the port is provided to the constructor then an explicit call to open is not needed.
std::invalid_argument | |
serial::SerialException | |
serial::IOException |
std::string serial::Serial::read | ( | size_t | size = 1 | ) |
Read a given amount of bytes from the serial port and return a string containing the data.
size | A size_t defining how many bytes to be read. |
size_t serial::Serial::read | ( | std::string & | buffer, |
size_t | size = 1 |
||
) |
Read a given amount of bytes from the serial port into a give buffer.
buffer | A reference to a std::string. |
size | A size_t defining how many bytes to be read. |
size_t serial::Serial::read | ( | std::vector< uint8_t > & | buffer, |
size_t | size = 1 |
||
) |
Read a given amount of bytes from the serial port into a give buffer.
buffer | A reference to a std::vector of uint8_t. |
size | A size_t defining how many bytes to be read. |
size_t serial::Serial::read | ( | uint8_t * | buffer, |
size_t | size | ||
) |
Read a given amount of bytes from the serial port into a given buffer.
The read function will return in one of three cases:
buffer | An uint8_t array of at least the requested size. |
size | A size_t defining how many bytes to be read. |
std::string serial::Serial::readline | ( | size_t | size = 65536 , |
std::string | eol = "\n" |
||
) |
Reads in a line or until a given delimiter has been processed.
Reads from the serial port until a single line has been read.
size | A maximum length of a line, defaults to 65536 (2^16) |
eol | A string to match against for the EOL. |
size_t serial::Serial::readline | ( | std::string & | buffer, |
size_t | size = 65536 , |
||
std::string | eol = "\n" |
||
) |
Reads in a line or until a given delimiter has been processed.
Reads from the serial port until a single line has been read.
buffer | A std::string reference used to store the data. |
size | A maximum length of a line, defaults to 65536 (2^16) |
eol | A string to match against for the EOL. |
std::vector< std::string > serial::Serial::readlines | ( | size_t | size = 65536 , |
std::string | eol = "\n" |
||
) |
Reads in multiple lines until the serial port times out.
This requires a timeout > 0 before it can be run. It will read until a timeout occurs and return a list of strings.
size | A maximum length of combined lines, defaults to 65536 (2^16) |
eol | A string to match against for the EOL. |
void serial::Serial::sendBreak | ( | int | duration | ) |
Sends the RS-232 break signal.
See tcsendbreak(3).
void serial::Serial::setBaudrate | ( | uint32_t | baudrate | ) |
Sets the baudrate for the serial port.
Possible baudrates depends on the system but some safe baudrates include: 110, 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 28800, 38400, 56000, 57600, 115200 Some other baudrates that are supported by some comports: 128000, 153600, 230400, 256000, 460800, 500000, 921600
baudrate | An integer that sets the baud rate for the serial port. |
std::invalid_argument |
void serial::Serial::setBreak | ( | bool | level = true | ) |
Set the break condition to a given level.
Defaults to true.
void serial::Serial::setBytesize | ( | bytesize_t | bytesize | ) |
Sets the bytesize for the serial port.
bytesize | Size of each byte in the serial transmission of data, default is eightbits, possible values are: fivebits, sixbits, sevenbits, eightbits |
std::invalid_argument |
void serial::Serial::setDTR | ( | bool | level = true | ) |
Set the DTR handshaking line to the given level.
Defaults to true.
void serial::Serial::setFlowcontrol | ( | flowcontrol_t | flowcontrol | ) |
Sets the flow control for the serial port.
flowcontrol | Type of flowcontrol used, default is flowcontrol_none, possible values are: flowcontrol_none, flowcontrol_software, flowcontrol_hardware |
std::invalid_argument |
void serial::Serial::setParity | ( | parity_t | parity | ) |
Sets the parity for the serial port.
parity | Method of parity, default is parity_none, possible values are: parity_none, parity_odd, parity_even |
std::invalid_argument |
void serial::Serial::setPort | ( | const std::string & | port | ) |
Sets the serial port identifier.
port | A const std::string reference containing the address of the serial port, which would be something like 'COM1' on Windows and '/dev/ttyS0' on Linux. |
std::invalid_argument |
void serial::Serial::setRTS | ( | bool | level = true | ) |
Set the RTS handshaking line to the given level.
Defaults to true.
void serial::Serial::setStopbits | ( | stopbits_t | stopbits | ) |
Sets the stopbits for the serial port.
stopbits | Number of stop bits used, default is stopbits_one, possible values are: stopbits_one, stopbits_one_point_five, stopbits_two |
std::invalid_argument |
void serial::Serial::setTimeout | ( | Timeout & | timeout | ) |
Sets the timeout for reads and writes using the Timeout struct.
There are two timeout conditions described here:
Read and write functions will return in one of three cases. When the reading or writing is complete, when a timeout occurs, or when an exception occurs.
A timeout of 0 enables non-blocking mode.
timeout | A serial::Timeout struct containing the inter byte timeout, and the read and write timeout constants and multipliers. |
|
inline |
void serial::Serial::waitByteTimes | ( | size_t | count | ) |
Block for a period of time corresponding to the transmission time of count characters at present serial settings.
This may be used in con- junction with waitReadable to read larger blocks of data from the port.
bool serial::Serial::waitForChange | ( | ) |
Blocks until CTS, DSR, RI, CD changes or something interrupts it.
Can throw an exception if an error occurs while waiting. You can check the status of CTS, DSR, RI, and CD once this returns. Uses TIOCMIWAIT via ioctl if available (mostly only on Linux) with a resolution of less than +-1ms and as good as +-0.2ms. Otherwise a polling method is used which can give +-2ms.
SerialException |
bool serial::Serial::waitReadable | ( | ) |
Block until there is serial data to read or read_timeout_constant number of milliseconds have elapsed.
The return value is true when the function exits with the port in a readable state, false otherwise (due to timeout or select interruption).
size_t serial::Serial::write | ( | const std::string & | data | ) |
Write a string to the serial port.
data | A const reference containing the data to be written to the serial port. |
size_t serial::Serial::write | ( | const std::vector< uint8_t > & | data | ) |
Write a string to the serial port.
data | A const reference containing the data to be written to the serial port. |
size_t serial::Serial::write | ( | const uint8_t * | data, |
size_t | size | ||
) |
Write a string to the serial port.
data | A const reference containing the data to be written to the serial port. |
size | A size_t that indicates how many bytes should be written from the given data buffer. |