How To: UART Interface
Core Module has 3 UARTs you can use. The signal for each channel is named TXDx, RXDx where x is 0, 1 or 2.
Please refer to the module drawing pinout where you find the signal's positions.
References
- UART SDK Module
- GitHub Repository Example
UART Write
Synchronous Write
Function twr_uart_write
needs to know how many bytes to send. That’s why you need to use sizeof(uart_tx)
.
This example will write a Hello world
through the UART1 with the baudrade of 115200.
There will be 8 data bits, none parity and 1 stop bit.
This writing is blocking, you will have to wait before the write is done.
Synchronous UART Write Code Example
Asynchronous Write
This is a little bit complicated because you need to create a FIFO structure and a FIFO buffer array. Then you initialize the FIFO and assign it to the UART.
In this example, we demonstrate just the async write.
Asynchronous UART Write Code Example
UART Read
There are again two options to read received bytes. You can read data synchronously in your task, or asynchronously using callbacks.
Synchronous Read
Synchronous UART Read Code Example
Asynchronous Read
This example does asynchronous send and receives of data on TWR_UART_UART1
with the baudrade of 115200.
There will be 8 data bits, none parity and 1 stop bit.
This example is not low power. If you start UART reading with twr_uart_async_read_start
function the Core Module will not go to sleep until you call the twr_uart_async_read_stop
.