Skip to main content
FBara.1
Visitor II
December 27, 2019
Question

STM32CubeIDE device configuration tool (ex CubeMX) ADC DMA bug

  • December 27, 2019
  • 0 replies
  • 502 views

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?

This topic has been closed for replies.