Lines Matching refs:nTty
162 struct termios nTty;
178 nTty = priv->kbdtty;
179 nTty.c_iflag = IGNPAR | IGNBRK;
180 nTty.c_oflag = 0;
181 nTty.c_cflag = CREAD | CS8;
182 nTty.c_lflag = 0;
183 nTty.c_cc[VTIME] = 0;
184 nTty.c_cc[VMIN] = 1;
185 cfsetispeed(&nTty, 9600);
186 cfsetospeed(&nTty, 9600);
187 if (tcsetattr(pInfo->fd, TCSANOW, &nTty) < 0) {