From 667353b64b552aff9e785a20ee915fb343a0dac9 Mon Sep 17 00:00:00 2001 From: staffcvs <> Date: Sat, 23 Feb 2008 13:05:58 +0000 Subject: *** empty log message *** --- src/util.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c index 0a74869..ba1e309 100644 --- a/src/util.c +++ b/src/util.c @@ -10,6 +10,9 @@ static char rcsid[] = "$Id$"; /* * $Log$ + * Revision 1.4 2008/02/23 13:05:58 staffcvs + * *** empty log message *** + * * Revision 1.3 2008/02/13 16:57:29 james * *** empty log message *** * @@ -79,10 +82,13 @@ void raw_termios (struct termios *termios) { - termios->c_iflag = ICRNL | IXON; - termios->c_oflag = OPOST | ONLCR | NL0 | CR0 | TAB0 | BS0 | VT0 | FF0; - termios->c_lflag = + termios->c_iflag = 0; +/*ICRNL | IXON;*/ + termios->c_oflag = NL0 | CR0 | TAB0 | BS0 | VT0 | FF0; + termios->c_lflag = 0; +/* ISIG | ICANON | IEXTEN | ECHO | ECHOE | ECHOK | ECHOCTL | ECHOKE; +*/ termios->c_cc[VINTR] = 003; termios->c_cc[VQUIT] = 034; @@ -105,12 +111,13 @@ void default_termios (struct termios *termios) { - memset (termios, 0, sizeof (termios)); +// memset (termios, 0, sizeof (termios)); raw_termios (termios); termios->c_cflag = CS8 | CREAD | CLOCAL; + termios->c_iflag |= PARMRK | INPCK; - cfsetispeed (termios, B9600); - cfsetospeed (termios, B9600); + //cfsetispeed (termios, B9600); + //cfsetospeed (termios, B9600); } -- cgit v1.2.3