serial: Removed flag OPOST (turn off all output processing).
This commit is contained in:
parent
a510d55571
commit
50a9aba21b
|
@ -590,7 +590,7 @@ SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial, int baudrate,
|
|||
|
||||
/* Turn off all serial port cooking. */
|
||||
term.c_iflag &= ~(ISTRIP | INLCR | ICRNL);
|
||||
term.c_oflag &= ~(ONLCR | OCRNL | ONOCR);
|
||||
term.c_oflag &= ~(OPOST | ONLCR | OCRNL | ONOCR);
|
||||
#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
|
||||
term.c_oflag &= ~OFILL;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue