2018-12-13 05:56 PM
I'm using an STM32F411 chip.
and it is trying to use the DMA function of UART2 and I2C3.
there are same DMA1 bus line.
at that time,
Is it available when both functions try to work at the same time?
Does Stm32 handle itself?
If so, what is the priority?
I have implemented the DMA function for UART2.
However, I am currently not able to implement I2C DMA function continuously.
We have not tested the two for the same time.
but, In the end, I have to use those two functions at the same time.
my email is royalmdm@naver.com
thank you.
Solved! Go to Solution.
2018-12-13 07:13 PM
They all use different Streams, so should all function concurrently
2018-12-13 07:13 PM
They all use different Streams, so should all function concurrently
2018-12-13 08:00 PM
thank you for your reply.
I lacked understanding of the stream.
what if I use I2C3_RX and UART4_RX DMA?
at that time i use same stream..
still no problem??
2018-12-13 10:32 PM
> what if I use I2C3_RX and UART4_RX DMA?
You can't.
JW
2018-12-14 12:04 AM
thank you