Home | History | Annotate | Download | only in grub

Lines Matching full:termios

43 #include <termios.h>
1105 struct termios termios;
1131 /* Get the termios parameters. */
1132 if (tcgetattr (serial_fd, &termios))
1136 cfmakeraw (&termios);
1143 cfsetispeed (&termios, termios_speed);
1144 cfsetospeed (&termios, termios_speed);
1147 termios.c_cflag &= ~CSIZE;
1151 termios.c_cflag |= CS5;
1154 termios.c_cflag |= CS6;
1157 termios.c_cflag |= CS7;
1160 termios.c_cflag |= CS8;
1170 termios.c_cflag &= ~PARENB;
1173 termios.c_cflag |= PARENB;
1174 termios.c_cflag |= PARODD;
1177 termios.c_cflag |= PARENB;
1178 termios.c_cflag &= ~PARODD;
1188 termios.c_cflag &= ~CSTOPB;
1191 termios.c_cflag |= CSTOPB;
1198 if (tcsetattr (serial_fd, TCSANOW, &termios))