133
CHAPTER 6 WATCHDOG TIMER
6.6
Program Example for Watchdog Timer
Programming examples for the watchdog timer are provided below.
■
Programming Examples of Watchdog Timer
●
Processing specification
•
Activate the watchdog timer immediately after the program starts.
•
Clear the watchdog timer whenever the loop of the main program is run.
•
Ensure that the time necessary for running the main loop once, including interrupt handling, is shorter
than the minimum time interval (approximately 335.5 ms: operating at 12.5 MHz) of the watchdog
timer.
●
Coding example
WDTC EQU
0009H
;
Address of watchdog control register
WDT_CLR EQU 00000101B
VECT
DSEG
ABS
;
[DATA SEGMENT]
ORG
0FFFEH
RST_V DW
PROG
;
Setting reset vector
VECT
ENDS
;------------------------Main program---------------------------------------------------------------------------------
CSEG
;
[CODE SEGMENT]
PROG
;
Initialization routine upon reset
MOVW
SP,#0280H
;
Setting initial value of stack pointer (for interrupt)
:
Initializing interrupt or other peripheral functions
:
INIT
MOV
WDTC,#WDT_CLR
;
Activating watchdog timer
MAIN
MOV
WDTC,#WDT_CLR
;
Clearing watchdog timer
:
User processing (interrupt may occur in this processing.)
:
JMP
MAIN
;
Ensure that the time necessary for running the loop is
shorter than the minimum time interval of the watchdog
timer.
ENDS
;---------------------------------------------------------------------------------------------------------------------
END
Содержание F2MC-8L F202RA
Страница 2: ......
Страница 4: ......
Страница 32: ...16 CHAPTER 1 OVERVIEW ...
Страница 90: ...74 CHAPTER 3 CPU ...
Страница 142: ...126 CHAPTER 5 TIME BASE TIMER POPW A RETI ENDS END ...
Страница 150: ...134 CHAPTER 6 WATCHDOG TIMER ...
Страница 174: ...158 CHAPTER 7 8 BIT PWM TIMER User processing POPW A XCHW A T Restoring A and T POPW A RETI ENDS ...
Страница 176: ...160 CHAPTER 7 8 BIT PWM TIMER ...
Страница 220: ...204 CHAPTER 8 8 16 BIT CAPTURE TIMER COUNTER ...
Страница 240: ...224 CHAPTER 9 12 BIT PPG TIMER ...
Страница 258: ...242 CHAPTER 10 EXTERNAL INTERRUPT CIRCUIT 1 EDGE PUSHW A User processing POPW A XCHW A T POPW A RETI ENDS END ...
Страница 274: ...258 CHAPTER 11 EXTERNAL INTERRUPT CIRCUIT 2 LEVEL ...
Страница 362: ...346 CHAPTER 15 BUZZER OUTPUT ...
Страница 371: ...355 CHAPTER 16 WILD REGISTER FUNCTION 16 3 5 Data Test Set Register WROR A test register Do not access this register ...
Страница 390: ...374 CHAPTER 17 FLASH MEMORY ...
Страница 419: ...403 INDEX INDEX The index follows on the next page This is listed in alphabetic order ...
Страница 434: ...418 INDEX ...
Страница 436: ......