Bug in Code Generation for SM32F072 for ADC
ADC channel selection is generated like this:
LL_ADC_REG_SetSequencerChannels(ADC1, LL_ADC_CHANNEL_0);
LL_ADC_REG_SetSequencerChannels(ADC1, LL_ADC_CHANNEL_1);
LL_ADC_REG_SetSequencerChannels(ADC1, LL_ADC_CHANNEL_TEMPSENSOR);
and it is incorrect: there must be a call of LL_ADC_REG_SetSequencerChAdd();