在线时间3 小时
UID3436769
注册时间2017-11-2
NXP金币0
该用户从未签到
新手上路
- 积分
- 22
- 最后登录
- 2017-12-6
|
用的SDKV2.2编写的,按照API手册示例编写的初始化看门狗代码,主程序加入了喂狗代码,在喂狗代码前加了很长的延时喂狗直接跳过去了居然没重启,时钟也设置的LPO模式啊,大神看看哪里没设置对啊
- void WDOG_Init(void)
- {
- cop_config_t config;
- COP_GetDefaultConfig(&config);
- config.timeoutCycles = kCOP_2Power8CyclesOr2Power16Cycles;
- COP_Init(SIM,&config);
-
- }
复制代码- int main(void) {
- /* Init board hardware. */
- BOARD_InitBootPins();
- BOARD_InitBootClocks();
- BOARD_InitDebugConsole();
- WDOG_Init();
-
-
- COP_Refresh(SIM);
- GPIO_WritePinOutput(BOARD_INITPINS_LED1_GPIO,BOARD_INITPINS_LED1_GPIO_PIN ,1);
- delay_ms(2000);
-
- COP_Refresh(SIM);
-
- GPIO_WritePinOutput(BOARD_INITPINS_LED1_GPIO,BOARD_INITPINS_LED1_GPIO_PIN ,0);
- delay_ms(1500);
- COP_Refresh(SIM);
- /* Add your code here */
- // for(;;) { /* Infinite loop to avoid leaving the main function */
- // __asm("NOP"); /* something to use as a breakpoint stop while looping */
- // }
- }
复制代码
|
-
-
WTD.rar
3.77 MB, 下载次数: 10, 下载积分: 威望 1
看门狗程序
|