Hi,I have ADC1 and ADC2 configured on one of the pins (PA3 - ADC1_INP15, ADC2_INP15) of my STM32H743VI. I am using the standard cubeMX initialization.static void MX_ADC1_Init(void)
{
/* USER CODE BEGIN ADC1_Init 0 */
/* USER CODE END ADC1_Ini...
UPDATE: Initialising the ADC without the HAL functions solves the problem and I can convert correctly. My initialisation function is:static void ID_ADC1Init(void){
//Do clock
__HAL_RCC_ADC12_CLK_ENABLE();
__HAL_RCC_ADC12_FORCE_RESET();
HAL_Delay(...