Is there a way to configure the order of the auto generated code?
I am using STMCubeIDE version 1.7.0 and I saw the generate code for the initialization
has different orders when I configured my ADC with DMA
Sometime the code was generate with ADC init before the DMA init
MX_ADC1_Init();
MX_ADC3_Init();
MX_DMA_Init();
Sometime the code was generate with DMA init before ADC init
MX_DMA_Init();
MX_ADC1_Init();
MX_ADC3_Init();
Is there a rule for the auto generated code orders?