2015-05-26 12:49 AM
Hello,
I am debugging step-by-step my project on stm32f103vd, using CooCox CoIDE, and ST-LinkV2.when I enable whatchdog, the system go then to Reset_DefaultHandler(). I think that's normal no ?and how I can debug step-by-step with keeping watchdog enable ?thanks :) #stm32 #debug #whatchdog2015-05-26 02:08 AM
In the register DBGMCU_CR there are a number of bits you can set to stop some peripherals while the core is halted. You can freeze the IWDG and WWDG to prevent watchdog reset, as well as various timers.
See the ''debug support'' part of the reference manual for more details.Hope this helps,Danish