Searched refs:new_tc (Results 1 – 1 of 1) sorted by relevance
90 struct termios new_tc; in config_comm() local92 memset(&new_tc, 0x00, sizeof(struct termios)); in config_comm()101 cfsetispeed(&new_tc, valid_baud_rate);//input speed in config_comm()102 cfsetospeed(&new_tc, valid_baud_rate);//output speed in config_comm()116 new_tc.c_cflag |= PARODD; //Odd parity. in config_comm()121 new_tc.c_cflag &= ~PARODD; //even parity. in config_comm()128 new_tc.c_cflag &= ~CSIZE; in config_comm()136 new_tc.c_cflag |= CS7; in config_comm()139 new_tc.c_cflag |= CS8; in config_comm()146 (stop_bits == 2)?(new_tc.c_cflag |= CSTOPB):(new_tc.c_cflag &= ~ CSTOPB); in config_comm()[all …]
Completed in 7 milliseconds