STM32 WWDG interrupt firing when not configured

前端 未结 8 2120
独厮守ぢ
独厮守ぢ 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:27

    So thanks to the kick in the pants by D Krueger. I was able to figure out that the HardFault_Handler was what was actually being called. So, anyone that stumbles on this post, verify which IRQ is truly being called by writing temporary functions to cover the likely culprits i.e. HardFault. The true issue for the IRQ call is a bad memory access by memcpy which I am on my way to solving next.

提交回复
热议问题