使用官方例程里的看门狗配置,但没有喂狗过,但并没有重启过
配置如下static void WDT_Config(void)
{
stc_wdt_init_t stcWdtInit;
/* WDT configuration */
stcWdtInit.u32CountPeriod = WDT_CNT_PERIOD16384;
stcWdtInit.u32ClockDiv = WDT_CLK_DIV512;
stcWdtInit.u32RefreshRange = WDT_RANGE_0TO25PCT;
stcWdtInit.u32LPMCount = WDT_LPM_CNT_STOP;
stcWdtInit.u32ExceptionType = WDT_EXP_TYPE_RST;
(void)WDT_Init(&stcWdtInit);
} |