// Simple string transmit function void uart_send_string(const char *str) while (*str) USART_Tx(UART_HANDLE, *str++);
// Initialize UART uart_init();
Introduction
Create a new file main.c and add the following code:
// Simple string transmit function void uart_send_string(const char *str) while (*str) USART_Tx(UART_HANDLE, *str++);
// Initialize UART uart_init();
Introduction
Create a new file main.c and add the following code: simplicity studio uart example