Lines Matching refs:nTty
686 struct termios nTty;
700 nTty = LinuxTermios;
701 nTty.c_iflag = (IGNPAR | IGNBRK) & (~PARMRK) & (~ISTRIP);
702 nTty.c_oflag = 0;
703 nTty.c_cflag = CREAD | CS8;
704 nTty.c_lflag = 0;
705 nTty.c_cc[VTIME]=0;
706 nTty.c_cc[VMIN]=1;
707 cfsetispeed(&nTty, 9600);
708 cfsetospeed(&nTty, 9600);
709 tcsetattr(fd, TCSANOW, &nTty);