Hi,
I'm using uart3 interrupt of RT1020 ,i'm using uart3 for rs-485 communication and its speed is 3MBps.
Also, I'm using LPSPI4 CMSIS driver handler for other communication .
Individually uart3 works fine but after adding spi handler , it will start occurring Overrun.
Still im clearing overrun flag but why this flag is getting set .
Also ,one query when this flag set ,in this case will i receive all data or lost
?
Solved! Go to Solution.
Hi @hanmant ,
I use MIMXRT1020-EVK board as edma_b2b_transfer_master, MIMXRT1064-EVK board as edma_b2b_transfer_slave.
I create a project based on MIMXRT1020-EVK board, I set this board as I2C master, add UART TX, UART RX, totally using 4 DMA channels. I modify some code both of MIMXRT1020-EVK project and MIMXRT1064-EVK project.
The result is both projects run Okay.
So please check your code, the critical code I have shown you bellow.
Please try it, and tell me to close this case.
If you still have question, Please create a new case.
BR
mayliu
Hi @mayliu1 ,
Thanks for reply.
Currently im using DMA uart. I'm using uart interrupt.
Please see below code snippet.
Hi @hanmant
Thanks for your update information.
If you use UART interrupt to send and receive UART data, every UART byte will trigger a UART interrupt.
Your UART baud rate is very high(3MBps) and will cause frequent entry UART interrupt, which is unreasonable.
I don't recommend you to use the UART interrupt when the UART baud rate is so high.
Best Regards
mayliu
Hi @hanmant
Question: This overrun problem is coming after inclusion of spi cmsis handler.
Answer: Due to the addition of spi cmsis handler, the entry of UART interrupt will be delayed and the UART data cannot be received in time.
BR
mayliu
Hi @hanmant
I highly recommend you using the DMA UART , especially when UART baud rate is particularly high.
BR
mayliu
Hi @mayliu1 ,
As per your suggestion i configured uart in DMA but still see the losses.
I can see clear losses at receiver side(my receiver is another device comport).
Hi @hanmant
Thank you for your updated information.
Can you tell me when and where you call the DMA UART receive function interface?
"In the source files(lpuart_edma_transfer.c) you sent, I didn't see any calls to the DMA UART data receive interface."
Please try to verify it according to the steps shown below.
1: Set the DMA_UART interrupt priority to be higher than other modules.
2: Use ping pong buffer to receive UART data.
Wish it helps you.
If you still have question about it, please kindly let me know.
Best Regards
mayliu
Hi @hanmant
Thank you for your updated information.
As you said, if you only send UART data, why you ask me UART overrun error happened.
UART overrun error is related with UART receive.
and if you want to send UART data, It is very simple, just call LPUART_SendEDMA.
BR
mayliu
Hi @mayliu1 ,
Thanks for reply.
As of now im not using uart receiver .
whatever i shared with is only uart transmit only (size 52 buffer)but i dont receive correct data on my Ti board using dma.
Hi @hanmant
I think I know the reason of the problem.
Continuous data transmission in your program can cause Ti board UART receiver overrun, resulting in abnormal data transfer.
I suggest adding a delay after sending 52 bytes UART data, Please try it.
I have tested and verified this 100 times on my end, and the data sending and receiving are consistent.
Wish it helps you.
If you still have question about it, please kindly let me know.
Hi @hanmant
Just add a delay function, I have shown to you.
SDK_DelayAtLeastUs(100000, CLOCK_GetFreq(kCLOCK_CpuClk));
1:In addition, I suggest you check whether the data format for UART sending and receiving is consistent.
2:Please confirm whether your NXP development board and TI development board share a common ground.
3:Please confirm whether the connection between UART transmission and reception is secure.
BR
mayliu
Hi @hanmant ,
Thank you for your updated information.
I suggest you can use NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)function.
1: The first parameter is IRQn_Type:
It depends on your design, if UART3 using DMA channel 0(#define LPUART_TX_DMA_CHANNEL 0U), then the first parameter is DMA0_DMA16_IRQn.
2:The second parameter is priority, The lower value, the greater the priority of the corresponding interrupt.
Best Regards
mayliu
Hi @hanmant ,
Please review the differences between the following definitions and use them according to your needs.
EDMA_SetChannelPreemptionConfig: It is primarily used to configure the preemption priority of DMA channels, ensuring the most important task can be processed first, when multiple DMA tasks happened at the same time.
NVIC_SetPriority: It is used to set the priority of interrupts, ensuring that high-priority interrupts can be responded to and processed by the CPU first when multiple interrupts happened at the same time.
Best Regards
mayliu