Generating code for SPI using DMA issue
Hi,
I'm working on NUCLEO-H743ZI board, using the STM32CubeMX 5.4.0 tool.
When i'm generating code for SPI using DMA - It seems that it doesn't work.
I tried to generate the same code for another device (STM32F411 Discovery Board) and i sow that there is a difference between this two components in the initialization order:
STM32F411
MX_DMA_Init();
MX_SPI1_Init();
NUCLEO-H743ZI
MX_SPI1_Init();
MX_DMA_Init();
When I switched between these two functions it seems that the problem solved.
is it a bug in the IDE?
