diff --git a/Src/stm32f4xx_it.c b/Src/stm32f4xx_it.c index 0cfddbc4..5c61dc95 100644 --- a/Src/stm32f4xx_it.c +++ b/Src/stm32f4xx_it.c @@ -175,6 +175,7 @@ void ADC_IRQHandler(void) // The HAL's ADC handling mechanism adds thousands of clock cycles of overhead // So we bypass it and handle the logic ourselves. //@TODO add vbus meaasurement on adc1 here + ADC_IRQ_Dispatch(&hadc1, &vbus_sense_adc_cb); ADC_IRQ_Dispatch(&hadc2, &pwm_trig_adc_cb); ADC_IRQ_Dispatch(&hadc3, &pwm_trig_adc_cb);