21 #include "../lib/circular_buffer.h" void exuart_Init(uint32_t baudRate)
Initializes the UART module.
Definition: ext_uart.c:57
void exuart_SendByteAsync(uint8_t data)
Asynchronously sends the given byte through the UART bus.
Definition: ext_uart.c:237
uint8_t exuart_GetByte(void)
Gets the next received byte.
Definition: ext_uart.c:189
uint16_t exuart_ReceivedBytesCount(void)
Gets the number of bytes received and ready to read.
Definition: ext_uart.c:155
void exuart_SendBytesAsync(uint8_t *data, int length)
Asynchronously sends the given bytes through the UART bus.
Definition: ext_uart.c:269