Home
last modified time | relevance | path

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

/hal_espressif-latest/components/hal/
Duart_hal.c144 uint8_t symbol_len = 1; // number of bits per symbol including start in uart_hal_get_symb_len() local
151 symbol_len += (data_bit < UART_DATA_BITS_MAX) ? (uint8_t)data_bit + 5 : 8; in uart_hal_get_symb_len()
152 symbol_len += (stop_bit > UART_STOP_BITS_1) ? 2 : 1; in uart_hal_get_symb_len()
153 symbol_len += (parity_mode > UART_PARITY_DISABLE) ? 1 : 0; in uart_hal_get_symb_len()
154 return symbol_len; in uart_hal_get_symb_len()