STM32F3 Interrupt and timers
I am running STM32F303VC.
I require an IRQ on GPIOE_Pin_15 ---> TIM2_Channel_1
My typical Frequency range is from 5 Hz - 500Hz
This is required to provide me with a number of ticks between the 2 interrupts. The result is then passed to TIM3 /100
PreScaler = Same for both timers
TIM2_Period = 1
TIM3_Period = Result / 100
TIM3 then provides me with 100 points between the original to trigger other events an certain points.
The problem I am having is the IRQ_Handlers do not get triggered.
I have monitored the GPIO_Pin_15 through a while loop and confirm this is toggling, however TIM2 doe not update TIM3 and TIM3 does NOT output either.I can provide my Main.C file if you email me
mailto:kim@accesssecurity.co.nz
#stm32f3 #timer-interrupt