yefj
Advanced Member level 5
Hello, I am implementing a TIM overrun delay using command like
NVIC_EnableIRQ(TIM4_IRQn);
void TIM4_IRQHandler(void)
TIM4->SR&=~TIM_SR_UIF;
But i cant find a manual where i can see the list of all NVIC commands ,what types of IRQ's TIM4_IRQn are there?
where is the list of all irq handler functions like TIM4_IRQHandler.
When i followed the specific manual they just gave the names for the specific example.
I havd found the origin of the names by going to definition in the code.
But its very confusing ,what if i want to use other intterrupt type for TIMEr or different interrupt for other periphery.
I dont know what manual to follow for my STM32F407.
What could be done?
Thanks.
NVIC_EnableIRQ(TIM4_IRQn);
void TIM4_IRQHandler(void)
TIM4->SR&=~TIM_SR_UIF;
But i cant find a manual where i can see the list of all NVIC commands ,what types of IRQ's TIM4_IRQn are there?
where is the list of all irq handler functions like TIM4_IRQHandler.
When i followed the specific manual they just gave the names for the specific example.
I havd found the origin of the names by going to definition in the code.
But its very confusing ,what if i want to use other intterrupt type for TIMEr or different interrupt for other periphery.
I dont know what manual to follow for my STM32F407.
What could be done?
Thanks.