2017-10-29 06:00 AM
Interrupt not displayed in interrupt log in EWARM.
I made a program to toggle the LED every 0.5 seconds by TIM 1 overflow interrupt, using STM32F3348Dicovery and STM32Nucleo-F401RE. The picture below is part of the program and the interrupt log.
An interrupt is displayed in the STM32Nucleo-F401RE interrupt log. But Nothing appears in the STM32F3348-Discovery interrupt log.
Why?
Solved! Go to Solution.
2017-10-29 07:42 AM
Look at the IRQ Handlers, likely have different names, they call HAL code that in turn calls your call-back code. Check the vectors and startup code.
Not sure if IAR has a forum, or FAQ, you should check their support options.
2017-10-29 07:42 AM
Look at the IRQ Handlers, likely have different names, they call HAL code that in turn calls your call-back code. Check the vectors and startup code.
Not sure if IAR has a forum, or FAQ, you should check their support options.
2017-11-06 11:02 PM
Thank you for your reply.
I'll ask IAR.
Best Regards,
Ken Inoue