serial  1.1.0
Cross-platform, serial port library written in C++
 All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Defines
Namespaces | Data Structures | Enumerations
serial Namespace Reference

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 }

Enumeration Type Documentation

Enumeration defines the possible bytesizes for the serial port.

Enumerator:
fivebits 
sixbits 
sevenbits 
eightbits 
             {
  fivebits = 5,
  sixbits = 6,
  sevenbits = 7,
  eightbits = 8
} bytesize_t;

Enumeration defines the possible flowcontrol types for the serial port.

Enumerator:
flowcontrol_none 
flowcontrol_software 
flowcontrol_hardware 

Enumeration defines the possible parity types for the serial port.

Enumerator:
parity_none 
parity_odd 
parity_even 

Enumeration defines the possible stopbit types for the serial port.

Enumerator:
stopbits_one 
stopbits_one_point_five 
stopbits_two