|
serial
1.1.0
Cross-platform, serial port library written in C++
|
Namespaces | |
| namespace | serial |
Data Structures | |
| struct | Timeout |
| class | Serial |
| class | SerialExecption |
| class | IOException |
| class | PortNotOpenedException |
Enumerations | |
| enum | bytesize_t { fivebits = 5, sixbits = 6, sevenbits = 7, eightbits = 8 } |
| enum | parity_t { parity_none = 0, parity_odd = 1, parity_even = 2 } |
| enum | stopbits_t { stopbits_one = 1, stopbits_one_point_five, stopbits_two = 2 } |
| enum | flowcontrol_t { flowcontrol_none = 0, flowcontrol_software, flowcontrol_hardware } |
| enum serial::bytesize_t |
Enumeration defines the possible bytesizes for the serial port.
{
fivebits = 5,
sixbits = 6,
sevenbits = 7,
eightbits = 8
} bytesize_t;
Enumeration defines the possible flowcontrol types for the serial port.
| enum serial::parity_t |
Enumeration defines the possible parity types for the serial port.
{
parity_none = 0,
parity_odd = 1,
parity_even = 2
} parity_t;
| enum serial::stopbits_t |
Enumeration defines the possible stopbit types for the serial port.
{
stopbits_one = 1,
stopbits_one_point_five,
stopbits_two = 2
} stopbits_t;
1.8.0