2022-09-21 09:26 AM
Hi, I was wondering does TIM1 has "global interrupt" like TIM2, TIM3... have?
I dont see such in STM32CubeMX app, is it called differently or does not have such interrupt?
Should I avoid using TIM1 if I need such interrupt?
Solved! Go to Solution.
2022-09-21 09:46 AM
It's an Advanced Timer, as such it might have multiple IRQHandlers for different aspects. IRQHandlers might also be shared. Look at the Vectors in startup.s, or the Manuals
You could make ONE Handler, and point all the related Vector Table entries at it. Would likely want same priority / preemption.
2022-09-21 09:46 AM
It's an Advanced Timer, as such it might have multiple IRQHandlers for different aspects. IRQHandlers might also be shared. Look at the Vectors in startup.s, or the Manuals
You could make ONE Handler, and point all the related Vector Table entries at it. Would likely want same priority / preemption.