STM32 WWDG interrupt firing when not configured

前端 未结 8 2124
独厮守ぢ
独厮守ぢ 2021-02-12 15:10

I have an application that I am porting from the Keil IDE to build with the GNU toolchain due to license issues. I have successfully be able to set up, build, flash and run the

8条回答
  •  被撕碎了的回忆
    2021-02-12 15:24

    Will add my 5 cents. I had this issue on stm32h7, but for me the cause was that the cube "forgot" to add TIM16_IRQHandler when TIM16 is used as the timebase source. It was not happening at the beginning but after several code regenerations. Looks like a bug in the cube, as the TIM16 was still set, but the interrupt handler got removed. So toggking to TIM17 and back resolved the issue.

提交回复
热议问题