APPENDIX
50
MI802 User’s Manual
bBuf = Get_F81866_Reg(0x2B);
bBuf &= (~0x20);
Set_F81866_Reg(0x2B,
bBuf);
//Enable
WDTO
Set_F81866_LD(0x07);
//switch
to
logic
device
7
Set_F81866_Reg(0x30,
0x01);
//enable
timer
bBuf = Get_F81866_Reg(0xF5);
bBuf &= (~0x0F);
bBuf |= 0x52;
Set_F81866_Reg(0xF5,
bBuf);
//count
mode
is
second
Set_F81866_Reg(0xF6,
interval);
//set
timer
bBuf = Get_F81866_Reg(0xFA);
bBuf |= 0x01;
Set_F81866_Reg(0xFA,
bBuf);
//enable
WDTO
output
bBuf = Get_F81866_Reg(0xF5);
bBuf |= 0x20;
Set_F81866_Reg(0xF5,
bBuf);
//start
counting
}
//---------------------------------------------------------------------------
void DisableWDT(void)
{
unsigned char bBuf;
Set_F81866_LD(0x07);
//switch
to
logic
device
7
bBuf = Get_F81866_Reg(0xFA);
bBuf &= ~0x01;
Set_F81866_Reg(0xFA,
bBuf);
//disable
WDTO
output
bBuf = Get_F81866_Reg(0xF5);
bBuf &= ~0x20;
bBuf |= 0x40;
Set_F81866_Reg(0xF5,
bBuf);
//disable
WDT
}
//---------------------------------------------------------------------------
Summary of Contents for 802
Page 1: ...802 MI802 Intel Cedar Trail NM10 Mini ITX Motherboard USER S MANUAL Version 1 0 ...
Page 4: ...iv MI802 User s Manual This page is intentionally left blank ...
Page 8: ...INTRODUCTION 4 MI802 User s Manual Board Dimensions ...
Page 17: ...INSTALLATIONS MI802 User s Manual 13 Connector Locations on MI802 ...
Page 24: ...INSTALLATIONS 20 MI802 User s Manual This page is intentionally left blank ...
Page 50: ...DRIVERS INSTALLATION 46 MI802 User s Manual This page is intentionally left blank ...