From 51c778bc5c92e7f9643758e849e8f09da7d230e1 Mon Sep 17 00:00:00 2001 From: Oleg Date: Mon, 19 Jul 2021 11:40:28 +0300 Subject: [PATCH] system/cu: fix setting termios with parity clear only the bits in c_cflag that will be set by cu --- system/cu/cu_main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/system/cu/cu_main.c b/system/cu/cu_main.c index 54fae73ce..54edc6c83 100644 --- a/system/cu/cu_main.c +++ b/system/cu/cu_main.c @@ -146,14 +146,16 @@ static int set_termios(int fd, int rate, enum parity_mode parity, tio = g_tio_dev; + tio.c_cflag &= ~(PARENB | PARODD | CRTSCTS); + switch (parity) { case PARITY_EVEN: - tio.c_cflag = PARENB; + tio.c_cflag |= PARENB; break; case PARITY_ODD: - tio.c_cflag = PARENB | PARODD; + tio.c_cflag |= PARENB | PARODD; break; case PARITY_NONE: