| 117 | } |
| 118 | |
| 119 | static void uart_reset_rx_timeout(void) { |
| 120 | uart.rxTimeout = false; |
| 121 | uart.rxTimeoutChars = uart.rfve && uart_fifo_enabled() ? UART_RX_TIMEOUT_DELAY : 0; |
| 122 | uart_set_timer(false); |
| 123 | } |
| 124 | |
| 125 | static bool uart_receive_char() { |
| 126 | uart_transfer_t transfer; |
no test coverage detected