ADC1 DMA stops TIM3 Global Interrupt
In a project built using STM32F103, I have used TIM3 for some of my frequent tasks (like LED blinking and setting some flags etc.), which work perfectly. Today when I tried to enable ADC1 using DMA Circular, it looks like the TIM3 Global Interrupt handler is not invoked..
This line of code, stops the TIM3 interrupt.
HAL_ADC_Start_DMA(hadc, adcBuffer, 5)
I don't find any relation between these 2. How ADC1 is related to TIM3? I am not using any channels of TIM3, just using its time elapsed event to do my tasks. Scratching my head.. Please help.



