Download EmCORE-i2305

Transcript
Appendices
Appendix A. Watchdog Timer (WDT) Setting
The application software depends on its requirement to trigger WDT with
adequate timer setting. Before WDT timeout, the functional normal system will
reload the WDT. The WDT never time-out for a normal system. The WDT will not
be reloaded by an abnormal system, then WDT will time-out and auto-reset the
system to avoid abnormal operation.
This computer supports 255 levels watchdog timer by software programming I/O
ports.
Below is an program example to disable and load WDT.
Sample Codes:
/*-----
#include
#include
#include
Include Header Area -----*/
“math.h”
“stdio.h”
“dos.h”
unsigned char sioIndex
unsigned char sioData
= 0x2E;
= 0x2F;
/*----- routing, sub-routing -----*/
void main()
{
outportb(sioIndex, 0x87);
outportb(sioIndex, 0x87);
/* or index = 0x4E */
/* or data = 0x4F */
/* Enable Super I/O */
outportb(sioIndex, 0x07);/* Select logic device
– WDT */
outportb(sioData, 0x07);
outportb(sioIndex, 0x30);
outportb(sioData, 0x01);
/* Enable WDT */
outportb(sioIndex, 0xF0);/*
Output */
outportb(sioData, 0x80);
Enable
outportb(sioIndex, 0xF6);/*
value */
outportb(sioData, 0x05);
Set
outportb(sioIndex, 0xF5); Enable WDT timer, Start countdown */
outportb(sioData, 0x32);
Set
}
outportb(sioIndex, 0xAA);
- 58 -
/*
WDT
WDTRST#
Timeout
Configure
and
/* SIO - Disable */