Appendix A
–
Watchdog Timer Programming
82
Deskt
op
Net
work
Ap
plian
ce
FW
S-
2365
************************************************************************************
// Procedure : AaeonWDTEnable
VOID AaeonWDTEnable (){
WDTEnableDisable(EnableLDN, EnableReg, EnableBit, 1);
}
// Procedure : AaeonWDTConfig
VOID AaeonWDTConfig (){
// Disable WDT counting
WDTEnableDisable(EnableLDN, EnableReg, EnableBit, 0);
// Clear Watchdog Timeout Status
WDTClearTimeoutStatus();
// WDT relative parameter setting
WDTParameterSetting();
}
VOID WDTEnableDisable(byte LDN, byte Register, byte BitNum, byte Value){
SIOBitSet(LDN, Register, BitNum, Value);
}
VOID WDTParameterSetting(){
// Watchdog Timer counter setting
SIOByteSet(TimerLDN, TimerReg, TimerVal);
// WDT counting unit setting
SIOBitSet(UnitLDN, UnitReg, UnitBit, UnitVal);
}
VOID WDTClearTimeoutStatus(){
SIOBitSet(StatusLDN, StatusReg, StatusBit, 1);
}
************************************************************************************
Summary of Contents for AAEON FWS-2365
Page 1: ...Last Updated January 7 2021 FWS 2365 Desktop Network Appliance User Manual 1st Ed ...
Page 14: ...Desktop Network Appliance FWS 2365 Chapter 1 Chapter 1 Product Specifications ...
Page 18: ...Desktop Network Appliance FWS 2365 Chapter 2 Chapter 2 Hardware Information ...
Page 19: ...Chapter 2 Hardware Information 19 Desktop Network Appliance FWS 2365 2 1 Dimensions System ...
Page 20: ...Chapter 2 Hardware Information 20 Desktop Network Appliance FWS 2365 Board Top and I O View ...
Page 21: ...Chapter 2 Hardware Information 21 Desktop Network Appliance FWS 2365 Bottom and Side View ...
Page 38: ...Desktop Network Appliance FWS 2365 Chapter 3 Chapter 3 AMI BIOS Setup ...
Page 41: ...Chapter 3 AMI BIOS Setup 41 Desktop Network Appliance FWS 2365 3 3 Setup Submenu Main ...
Page 52: ...Chapter 3 AMI BIOS Setup 52 Desktop Network Appliance FWS 2365 3 4 4 SIO Configuration ...
Page 66: ...Chapter 3 AMI BIOS Setup 66 Desktop Network Appliance FWS 2365 3 7 Setup Submenu Save Exit ...
Page 68: ...Chapter 3 AMI BIOS Setup 68 Desktop Network Appliance FWS 2365 3 8 1 Processor Configuration ...
Page 69: ...Chapter 3 AMI BIOS Setup 69 Desktop Network Appliance FWS 2365 3 8 2 Server ME Configuration ...
Page 72: ...Chapter 3 AMI BIOS Setup 72 Desktop Network Appliance FWS 2365 3 8 4 1 SATA Configuration ...
Page 76: ...Desktop Network Appliance FWS 2365 Chapter 4 Chapter 4 Driver Installation ...
Page 78: ...Desktop Network Appliance FWS 2365 Appendix A Appendix A Watchdog Timer Programming ...
Page 85: ...Desktop Network Appliance FWS 2365 Appendix B Appendix B Hardware and LAN Bypass Programming ...