Usage of this same ADC pin on two ADC instances
Hello, I am working on STM32F7x uC and I want to use one GPIO pin, e.g. PA3 as analog input. However, value from analog input should be read both by ADC1 and ADC2. CubeMX allows me that configuration and it should work. However, when I deinitialize only ADC1 then ADC2 stops work too. The reason is fact that generated: HAL_ADC_MspDeInit() function just deinitializes PA3 pin and it does not take into account that the other instance of ADC uses this pin as well.
is it kind of limitation of CubeMX solution? or Do I miss something else and there is a limitation of hardware and one GPIO pin cannot be used by two (or more) instances of ADC simultaneously?
Best regards and thanks in advance for any tips.
