Simplicity Studio Uart Example Link
int main(void) // Chip initialization (important for errata) CHIP_Init();
Try connecting two devices together, or hook up a GPS module to parse NMEA sentences over UART. Have questions or want to see a DMA or low-power UART example? Let me know in the comments below! simplicity studio uart example
Create a new file main.c and add the following code: int main(void) // Chip initialization (important for errata)
// Buffers char tx_buffer[64]; char rx_byte; Try connecting two devices together
// Initialize USART USART_InitAsync(UART_HANDLE, &init);