Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 5 months ago.
1 interrupt ok... 2 interrupts not ok !
Hello,
I have a working timer interrupt handler thanks to this call:
InterruptManager::get()->add_handler(pointerOnTIM4_Interrupt, TIM4_IRQn);
So now I try to configure an other interrupt on an other timer (TIM1), exactly the same way. But when I configures the interrupt like this:
[...] TIM_ITConfig(TIM1, TIM_IT_CC1, ENABLE);
this does not work.
The REALLY weird thing is that when I put TIM_IT_Update, it does work but it is not what I need !!
I think it is in the configuration, or startup file.
(In fact, this entire code works on Eclipse (Ac6 plug-in), where I could modify a little the stm32f10x.h file, but I need it to work on mbed now...)
Have you got any tip ?
Best regards,
Julien.