Home
last modified time | relevance | path

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

/developtools/hdc/src/common/
Duart.cpp176 struct termios newttys1, oldttys1; in SetSerial() local
184 bzero(&newttys1, sizeof(newttys1)); in SetSerial()
185 newttys1.c_cflag = GetUartSpeed(nSpeed); in SetSerial()
186 newttys1.c_cflag |= (CLOCAL | CREAD); in SetSerial()
187 newttys1.c_cflag &= ~CSIZE; in SetSerial()
188 newttys1.c_lflag &= ~ICANON; in SetSerial()
189 newttys1.c_cflag |= GetUartBits(nBits); in SetSerial()
192 newttys1.c_cflag |= PARENB; in SetSerial()
193 newttys1.c_iflag |= (INPCK | ISTRIP); in SetSerial()
194 newttys1.c_cflag |= PARODD; in SetSerial()
[all …]