SERIAL++ library: simple serial port access

◆ makeraw()

void serialport::SerialPort::makeraw ( ) const

issue cfmakeraw

Definition at line 170 of file serialport.cc.

References Mfd.

171  {
172  struct termios options;
173  ::tcgetattr(Mfd, &options);
174  ::cfmakeraw(&options);
175  ::tcsetattr(Mfd, TCSANOW, &options);
176  } // void SerialPort::makeraw() const
int Mfd
file descriptor to this port
Definition: serialport.h:90