Home
last modified time | relevance | path

Searched refs:newttys1 (Results 1 – 1 of 1) sorted by relevance

/developtools/hdc/src/common/
Duart.cpp171 struct termios newttys1, oldttys1; in SetSerial() local
179 bzero(&newttys1, sizeof(newttys1)); in SetSerial()
180 newttys1.c_cflag = GetUartSpeed(nSpeed); in SetSerial()
181 newttys1.c_cflag |= (CLOCAL | CREAD); in SetSerial()
182 newttys1.c_cflag &= ~CSIZE; in SetSerial()
183 newttys1.c_lflag &= ~ICANON; in SetSerial()
184 newttys1.c_cflag |= GetUartBits(nBits); in SetSerial()
187 newttys1.c_cflag |= PARENB; in SetSerial()
188 newttys1.c_iflag |= (INPCK | ISTRIP); in SetSerial()
189 newttys1.c_cflag |= PARODD; in SetSerial()
[all …]