(STM32H743IIT6) STM32CubeMX config ADC in wrong for LL Library
I found that the ADC sample is wrong when I use LL library, and it is correct when using HAL library.

By comparing the registers, I found the code generated for LL library missing a sentence;
LL_ADC_SetChannelPreSelection(ADC1, LL_ADC_CHANNEL_19);
And when I config the ADC using DMA to transfer, it doesn't work;

I added the following code manually, and it works.
LL_ADC_REG_SetDataTransferMode(ADC1, LL_ADC_REG_DMA_TRANSFER_UNLIMITED);
I configure the VREFBUF to use externel reference, but this seems generate nothing.

I added the following code manually, and it works.
LL_APB4_GRP1_EnableClock(LL_APB4_GRP1_PERIPH_VREF);
SET_BIT(VREFBUF->CSR, VREFBUF_CSR_HIZ);
Can these bugs get fix?
