Hello, I have two applications bootloader and UserApp. In bootloader, I am using UART to print my trace logs using LPUART_DRV_SendDataBlocking API.
In bootloader, I am using UART to print my trace logs using LPUART_DRV_SendDataBlocking API. Before jumping to UserApp, I am doing all deinit calls ex. LPUART_DRV_AbortSendingData(INST_LPUART1); LPUART_DRV_Deinit(INST_LPUART1); INT_SYS_DisableIRQGlobal(); EDMA_DRV_Deinit(...
LPUART_DRV_SendDataBlocking(INST_LPUART0, (uint8_t *)welcomeMsg, strlen(welcomeMsg), 100); // In the example, this function is called after "LPUART_DRV_Init" returns STATE_SUCCESS, so I supposed I can do so as well. // Initialization ends here I haven't implemented a RX handler yet...