Project is created from S32K144 EAR SDK Example Projects. But there is no communication with UART. The same code is working with Interrupts. I have changed lpuart_user_config_t lpuart1_InitConfig0. (.transferType = LPUART_USING_DMA,)
Am I missing any configuration?
已解决! 转到解答。
Hi,
to be able use eDMA data transfer mode - you also need init eDMA driver by adding this line in the main function:
EDMA_DRV_Init(&dmaController1_State, &dmaController1_InitConfig0);
front of UART init.
Another suggestion from SDK team is to use latest RTM SDK version. Lot of bugs is fixed there.
Jiri
Hi,
to be able use eDMA data transfer mode - you also need init eDMA driver by adding this line in the main function:
EDMA_DRV_Init(&dmaController1_State, &dmaController1_InitConfig0);
front of UART init.
Another suggestion from SDK team is to use latest RTM SDK version. Lot of bugs is fixed there.
Jiri
Hello,
I tried LPUART example - and for me even the interrupt mode is not working correctly. I can get welcome message, but no response to typing. I sent email to SDK team for solution and I'll respond when I get answer.
Jiri