Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/vfs/test/
Dtest_vfs_uart.c268 tios.c_cflag &= (~CSTOPB);
277 TEST_ASSERT_EQUAL(0, tios_result.c_cflag & CSTOPB);
289 tios.c_cflag |= CSTOPB;
292 tios.c_cflag &= (~(CSTOPB | PARENB | PARODD));
294 TEST_ASSERT_EQUAL(CSTOPB, tios_result.c_cflag & CSTOPB);
/hal_espressif-3.6.0/components/newlib/platform_include/sys/
Dtermios.h133 #define CSTOPB (1u << 2) /** Send two stop bits, else one. */ macro
/hal_espressif-3.6.0/components/vfs/
Dvfs_uart.c586 …if (uart_set_stop_bits(fd, (p->c_cflag & CSTOPB) ? UART_STOP_BITS_2 : UART_STOP_BITS_1) != ESP_OK)… in uart_tcsetattr()
779 p->c_cflag |= CSTOPB; in uart_tcgetattr()