Question
STM32H743. How to disable ADC3 after first use
My device uses an STM32H743VITx MCU.
I need to use ADC3 at the beginning of my program to verify that three voltages are indeed at the correct values. Then I want to disable it completely before initializing ADC1 and ADC2 to avoid pin conflicts.
Does the function HAL_ADC_DeInit(&hadc3) allow me to do this?
