
ML62Q1000 Series User's Manual
Chapter 10 Watchdog Timer
FEUL62Q1000
10-10
10.3.1 How to Clear WDT Counter
The WDT counter can be cleared by writing "0x5A" to the WDTCON register with the WDP bit set to "0", then writing
"0xA5" to the WDTCON register with the WDP bit set to "1" while WDT counter clearing is enabled.
The WDP bit is reset to "0" when the system is reset as well as when the WDT counter overflows. It is reversed every
time data is written to the WDTCON register.
The following diagram shows the WDT counter clearing timing chart.
Figure 10-3 WDT Counter Clearing Timing Chart
The following description shows a sample program script of the watchdog timer.
void wdt_clear( void )
{
unsigned char pswval;
if(WDTCLR1 == 1) {
// Checking presence of pending clearing process
return;
};
if(WDTCLR2== 1) {
// Checking whether clearing process is pending or completed
return;
};
pswval = s_drvcommon_getPSW();
// Saving PSW
_DI();
// Interrupt disabled (clearing MIE bit)
do {
WDTCON = 0x5A;
// WDT counter clearing
} while (WDP != 1 );
WDTCON = 0xA5;
if ((pswval & 0x08) != 0) {
// Confirming MIE bit
_EI();
// Interrupt enabled (setting MIE bit)
}
static unsigned char s_drvcommon_getPSW( void ){
#pragma asm
mov r0,psw
rt
#pragma endasm
}
Figure 10-4 Sample Program Script of Watchdog Timer
Writing of "0xA5"
System clock
WDTCON Write
WDTCLR1
WDT counter
WDP bit
WDTCLR2
WDT clock
0
n
n-1
n-2
Writing of "0x5A"
Summary of Contents for ML62Q1000 Series
Page 17: ...Chapter 1 Overview...
Page 112: ...Chapter 2 CPU and Memory Space...
Page 154: ...Chapter 3 Reset Function...
Page 166: ...Chapter 4 Power Management...
Page 196: ...Chapter 5 Interrupts...
Page 248: ...Chapter 6 Clock generation Circuit...
Page 274: ...Chapter 7 Low Speed Time Base Counter...
Page 291: ...Chapter 8 16 Bit Timer...
Page 320: ...Chapter 9 Functional Timer FTM...
Page 382: ...Chapter 10 Watchdog Timer...
Page 402: ...Chapter 11 Serial Communication Unit...
Page 456: ...Chapter 12 I2 C Bus Unit...
Page 491: ...Chapter 13 I2 C Master...
Page 512: ...Chapter 14 DMA Controller...
Page 531: ...Chapter 15 Buzzer...
Page 550: ...Chapter 16 Simplified RTC...
Page 559: ...Chapter 17 GPIO...
Page 594: ...Chapter 18 External Interrupt Function...
Page 612: ...Chapter 19 CRC Generator...
Page 632: ...Chapter 20 Analog Comparator...
Page 644: ...Chapter 21 D A Converter...
Page 655: ...Chapter 22 Voltage Level Supervisor...
Page 676: ...Chapter 23 Successive Approximation Type A D Converter...
Page 709: ...Chapter 24 Regulator...
Page 714: ...Chapter 25 Flash Memory...
Page 743: ...Chapter 26 Code Option...
Page 750: ...Chapter 27 LCD Driver...
Page 788: ...Chapter 28 On Chip Debug Function...
Page 795: ...Chapter 29 Safety Function...
Page 813: ...Appendix A...
Page 881: ...Revision History...