input capture on STM32F030
i want use TIM1 CH1 in input capture using DMA.
The DMA is set to peripheral to memory and store the data in a buffer of 100 elements.
When the transfer of the 100 data is completed i want generate a TIM1 interrupt. Wich kind of interrupt of TIM1 i have to see and enable?:
1) TIM1_BRK_UP_TRG_COM_IRQHandler
2) TIM1_CC_IRQHandler
i saw in AN that if DMA is enabled the CC1IF is set, so i have to see TIM1_CC_IRQHandler?
