Lines Matching refs:nTty
243 struct termios nTty;
247 nTty = priv->tty;
248 nTty.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR
250 nTty.c_oflag &= ~OPOST;
251 nTty.c_lflag &= ~(ECHO | ECHONL | ICANON | ISIG | IEXTEN);
252 nTty.c_cflag &= ~(CSIZE | PARENB);
253 nTty.c_cflag |= CS8 | CLOCAL | CSTOPB;
254 nTty.c_cc[VTIME] = 0;
255 nTty.c_cc[VMIN] = 1;
256 cfsetispeed (&nTty, B1200);
257 cfsetospeed (&nTty, B1200);
258 if (tcsetattr(priv->fd, TCSANOW, &nTty) < 0)