Question
void ADC_IRQHandler(void) Question
Posted on August 18, 2015 at 22:24
I think I know the answer but I just want to be sure. Is there any way to know from which ADC the handler is called? If I am using the 3 ADCs do I need to call the HAL_ADC_IRQHandler() for all like below?
void ADC_IRQHandler(void)
{
HAL_ADC_IRQHandler(&hADC1);
HAL_ADC_IRQHandler(&hADC2);
HAL_ADC_IRQHandler(&hADC3);
}
Thank you