Home
last modified time | relevance | path

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

/external/libnfc-nxp/Linux_x86/
DphDal4Nfc_uart.c56 struct termios nIoConfig; member
194 memset((void *)&gComPortContext.nIoConfig, (int)0, (size_t)sizeof(struct termios)); in phDal4Nfc_uart_open_and_configure()
203 …gComPortContext.nIoConfig.c_cflag = DAL_BAUD_RATE | CS8 | CLOCAL | CREAD; /* Control mode flags */ in phDal4Nfc_uart_open_and_configure()
204 …gComPortContext.nIoConfig.c_iflag = IGNPAR; /* Input mo… in phDal4Nfc_uart_open_and_configure()
205 …gComPortContext.nIoConfig.c_oflag = 0; /* Output mo… in phDal4Nfc_uart_open_and_configure()
206 …gComPortContext.nIoConfig.c_lflag = 0; /* Local mo… in phDal4Nfc_uart_open_and_configure()
207 …gComPortContext.nIoConfig.c_cc[VTIME] = 0; /* Control ch… in phDal4Nfc_uart_open_and_configure()
208 …gComPortContext.nIoConfig.c_cc[VMIN] = 1; /* Control ch… in phDal4Nfc_uart_open_and_configure()
215 ret = tcsetattr(gComPortContext.nHandle, TCSANOW, &gComPortContext.nIoConfig); in phDal4Nfc_uart_open_and_configure()