main()
{
mcu_init(); //包含打开wdt语句
while(1)
{
SRS = 0X00;//或asm sta SRS和 asm sta $1800 根据datasheet上讲述,写任意数值到SRS寄存器所在单元均可以Clear watchdog timer.可测试发现按照上述两种方法不行,喂狗均没有成功,导致系统反复reset。请教 datasheet中提到的“writing any value to the srs register address clears the cop watchdog timer”中说说的“register address”到底只什么意思?怎样才可以实现其喂狗功能?多谢~
}
} |