小弟在学习PIC单片机,使用PIC16F887写了个LED灯程序,
延时程序如下:
Delay_ms(uint xms)
{ uint i,j;
for(i=0;i<xms;i++)
{
for(j=0;j<1000;j++);
我将其中的1000改为4000,用软件仿真提示:
Simulator status indicates that the SIM stopped because the Watch
Dog Timer(WDT) expired.
If your program stopped unexpectedly,you may have your WDT
enabled.
小弟不解,请高手帮忙说明是什么问题?
非常感谢! |