Question
STM32CubeIDE device configuration tool (ex CubeMX) ADC DMA bug
That took a whole day to figure out.
Code generation puts MX_ADC1_Init before MX_DMA_Init in main sub.
The correct order is:
MX_DMA_Init();
MX_ADC1_Init();
Is there a way to ask ST to fix that?