Setting interrupt ADC conversion is complete using HAL
Posted on August 05, 2015 at 11:37STM32F407VG When Interrupt function looks like this:void ADC_IRQHandler(void){adc=HAL_ADC_GetValue(&hadc1); HAL_ADC_IRQHandler(&hadc1); HAL_ADC_Start_IT(&hadc1);}Everything works well.But when I want to do the ADC ...