Lines Matching refs:termios
63 struct termios termios; /* serial terminal of BT port */ member
252 tcgetattr(vnd_userial.fd, &vnd_userial.termios); in userial_vendor_open()
253 cfmakeraw(&vnd_userial.termios); in userial_vendor_open()
254 vnd_userial.termios.c_cflag |= (CRTSCTS | stop_bits); in userial_vendor_open()
255 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios); in userial_vendor_open()
258 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios); in userial_vendor_open()
263 cfsetospeed(&vnd_userial.termios, baud); in userial_vendor_open()
264 cfsetispeed(&vnd_userial.termios, baud); in userial_vendor_open()
265 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios); in userial_vendor_open()
321 cfsetospeed(&vnd_userial.termios, tcio_baud); in userial_vendor_set_baud()
322 cfsetispeed(&vnd_userial.termios, tcio_baud); in userial_vendor_set_baud()
323 tcsetattr(vnd_userial.fd, TCSANOW, &vnd_userial.termios); in userial_vendor_set_baud()