2020-11-24 06:51 PM
I used SPI_DMA to transfer data by function HAL_SPI_TransmitReceive_DMA()。It is OK。
I find it used interrupt. and it can be not changed to uninterrupted mode.
Now I hope not use interrupt, how do I?
Solved! Go to Solution.
2020-11-25 03:56 PM
HAL isn't set up to use DMA functions without interrupts. You'll need to create your own driver for this.
2020-11-25 03:56 PM
HAL isn't set up to use DMA functions without interrupts. You'll need to create your own driver for this.
2020-12-08 10:07 PM
:downcast_face_with_sweat: