Searched refs:btstack_uart_block_termios (Results 1 – 1 of 1) sorted by relevance
/btstack/platform/posix/ |
H A D | btstack_uart_posix.c | 67 struct termios btstack_uart_block_termios; variable 224 cfsetospeed(&btstack_uart_block_termios, brate); in btstack_uart_posix_set_baudrate() 225 cfsetispeed(&btstack_uart_block_termios, brate); in btstack_uart_posix_set_baudrate() 231 if( tcsetattr(fd, TCSADRAIN, &btstack_uart_block_termios) < 0) { in btstack_uart_posix_set_baudrate() 284 btstack_uart_posix_set_parity_option(&btstack_uart_block_termios, parity); in btstack_uart_posix_set_parity() 285 if(tcsetattr(fd, TCSANOW, &btstack_uart_block_termios) < 0) { in btstack_uart_posix_set_parity() 295 btstack_uart_posix_set_flowcontrol_option(&btstack_uart_block_termios, flowcontrol); in btstack_uart_posix_set_flowcontrol() 296 if(tcsetattr(fd, TCSANOW, &btstack_uart_block_termios) < 0) { in btstack_uart_posix_set_flowcontrol() 317 if (tcgetattr(fd, &btstack_uart_block_termios) < 0) { in btstack_uart_posix_open() 321 cfmakeraw(&btstack_uart_block_termios); // make raw in btstack_uart_posix_open() [all …]
|