E m b e d d e d C o n t r o l l e r
A E C - 6 4 0 2
Appendix A Programming the Watchdog Timer
A-4
// Procedure : AaeonWDTEnable
// This procudure will enable the WDT counting.
AaeonWDTEnable();
}
**************************************************************************
*****
**************************************************************************
*****
// Procedure : AaeonWDTEnable
VOID
AaeonWDTEnable ()
{
WDTEnableDisable(1);
}
// Procedure : AaeonWDTConfig
VOID
AaeonWDTConfig (byte Counter, BOOLEAN Unit)
{
// Disable WDT counting
WDTEnableDisable(
0
);
// Clear Watchdog Timeout Status
WDTClearTimeoutStatus();
// WDT relative parameter setting
WDTParameterSetting(Timer, Unit);
}
VOID
WDTEnableDisable(byte Value)
{
If (Value == 1)
WDTSetBit(
TimerReg, EnableBit, 1
);
else
WDTSetBit(
TimerReg, EnableBit, 0
);
}
VOID
WDTParameterSetting(byte Counter, BOOLEAN Unit)
{
// Watchdog Timer counter setting
WDTWriteByte(
CounterReg, Counter
);
// WDT counting unit setting
WDTSetBit(
TimerReg, UnitBit, Unit
);
Summary of Contents for AEC-6402
Page 35: ...Embedded Controller A E C 6 4 0 2 Chapter 3 AMI BIOS Setup 3 1 AMI BIOS Setup Chapter 3 ...
Page 54: ...Embedded Controller A E C 6 4 0 2 Chapter 3 AMI BIOS Setup 3 20 H W Monitor ...
Page 72: ...Embedded Controller A E C 6 4 0 2 Chapter 4 Driver Installation 4 5 ...
Page 83: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 1 I O Information Appendix B ...
Page 84: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 2 D 1 I O Address Map ...
Page 85: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 3 ...
Page 86: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 4 D 2 Memory Address Map ...
Page 87: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 5 D 3 IRQ Mapping Chart ...
Page 88: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 6 ...
Page 89: ...Embedded Controller A E C 6 4 0 2 Appendix B I O Information B 7 D 4 DMA Channel Assignments ...
Page 90: ...Embedded Controller A E C 6 4 0 2 Appendix C AHCI Setting C 1 AHCI Setting Appendix C ...
Page 92: ...Embedded Controller A E C 6 4 0 2 Appendix C AHCI Setting C 3 Step 3 Press F6 Step 4 Choose S ...