STM32G031F4P ADC Trigger problem.
Hi everyone.
I am using STM32G431F4P MCU. I am using Timer3-Channel3 PWM output. PWM frequency is 20 kHz. ADC1 is DMA mode and i want to trigger ADC1 using Timer3-Channel1 (PWM generation no output). Timer3 and ADC1 settings are as follows;

This is code;
HAL_TIM_PWM_Start(&htim3,TIM_CHANNEL_3);
TIM3->CCR1 = TIM3->CCR3 = 1000;
HAL_Delay(100);
HAL_ADC_Start_DMA (&hadc1, (uint32_t*)&ADC1_value, 2);But ADC1 is not triggered. It is only working one time (as soon as i start the ADC1). What is the problem?
Have a nice work.