I am working on NUCLEO-F103RB (target STM32F103RB) with Keil uVision5. What I want to do is to trigger ADC1 injected group with TIM2 CC1 event every 10 microseconds, but it not work. Could anyone help me ?
I have written ADC1_2_ IRQ Handler ISR and TIM2_IRQHandler. TIM2_IRQHandler is executed but ADC1_2_IRQHandler it is not executed.I have also tried to trigger ADC1 injected group with JSWSTAR event and it works fine (ADC1_2_IRQHandler is executed).The...