66 uint8_t rts_pin_number,
67 uint8_t txd_pin_number,
68 uint8_t cts_pin_number,
69 uint8_t rxd_pin_number,
uint8_t simple_uart_get(void)
Function for reading a character from UART. Execution is blocked until UART peripheral detects charac...
void simple_uart_putstring(const uint8_t *str)
Function for sending a string to UART. Execution is blocked until UART peripheral reports all charact...
void simple_uart_put(uint8_t cr)
Function for sending a character to UART. Execution is blocked until UART peripheral reports characte...
bool simple_uart_get_with_timeout(int32_t timeout_ms, uint8_t *rx_data)
Function for reading a character from UART with timeout on how long to wait for the byte to be receiv...
void simple_uart_config(uint32_t baudrate, uint8_t rts_pin_number, uint8_t txd_pin_number, uint8_t cts_pin_number, uint8_t rxd_pin_number, bool hwfc)
UART configuration.