FabiaTech Corporation
¾
Watchdog Timer Disabled
To disable the watchdog timer, simply write a 00H to the watchdog register.
#include “stdio.H”
#include “WDLIB.H”
main( )
{
InitWD(equWdUnitS);
printf (“Disable Watch Dog”);
//Disable watch dog
DisWD(WD_TIME);
}
40