Appendix C
–
Digital I/O Ports
97
Net
work
Ap
plian
ce
FW
S-
78
40
*********************************************************************
Boolean
IoBitRead(byte Address, byte BitNum)
{
Byte TmpValue;
TmpValue = IOReadByte(Address);
TmpValue &= (1 << BitNum);
If(TmpValue == 0)
Return 0;
Return 1;
}
Boolean
IoBitSet(byte Address, byte BitNum, Byte Value)
{
Byte TmpValue;
TmpValue = IOReadByte(Address);
TmpValue &= ~(1 << BitNum);
TmpValue |= (Value & 0x01) << BitNum;
IOWriteByte(Address, TmpValue);
Return 1;
}
VOID
ConfigDioMode(byte PinBit, byte Mode)
{
Byte TmpValue;
SIOEnterMBPnPMode();
SIOSelectLDN(DIOLDN);
If (PinBit < Pin5Bit) {
If (PinBit < Pin3Bit) {
1;
} else {
2;
}
IOWriteByte(SIOIndex, DirReg1);
TmpValue = IOReadByte(SIOData);
TmpValue &= (1 << PinBit);
TmpValue |= (Mode << PinBit);
IOWriteByte(SIOData, TmpValue);
} else if ((PinBit > Pin4Bit) && (PinBit < Pin7Bit))
{
IOWriteByte(SIOIndex, DirReg2);
TmpValue = IOReadByte(SIOData);
TmpValue &= ~(1 << ((PinBit
–
Pin4Bit)
+ 3)
);
Содержание AAEON FWS-7840
Страница 1: ...Last Updated September 24 2021 FWS 7840 Network Appliance User s Manual 1st Ed ...
Страница 14: ...Network Appliance FWS 7840 Chapter 1 Chapter 1 Product Specifications ...
Страница 17: ...Network Appliance FWS 7840 Chapter 2 Chapter 2 Hardware Information ...
Страница 18: ...Chapter 2 Hardware Information 5 Network Appliance FWS 7840 2 1 Dimensions 2 1 1 FWS 7840 System ...
Страница 19: ...Chapter 2 Hardware Information 6 Network Appliance FWS 7840 2 1 2 FWS 7840 Main Board Component Side ...
Страница 20: ...Chapter 2 Hardware Information 7 Network Appliance FWS 7840 Main Board Solder Side ...
Страница 21: ...Chapter 2 Hardware Information 8 Network Appliance FWS 7840 2 1 3 PER T629 NIM Two Slot Riser Card ...
Страница 22: ...Chapter 2 Hardware Information 9 Network Appliance FWS 7840 2 1 4 PER T636 PCIe x8 Riser Card ...
Страница 23: ...Chapter 2 Hardware Information 10 Network Appliance FWS 7840 2 1 5 PER T639 Dual SFP Port Expansion Card ...
Страница 24: ...Chapter 2 Hardware Information 11 Network Appliance FWS 7840 2 2 Jumpers and Connectors Component Side ...
Страница 25: ...Chapter 2 Hardware Information 12 Network Appliance FWS 7840 Solder Side ...
Страница 30: ...Chapter 2 Hardware Information 17 Network Appliance FWS 7840 2 5 PER T629 Connectors ...
Страница 49: ...Network Appliance FWS 7840 Chapter 3 Chapter 3 AMI BIOS Setup ...
Страница 52: ...Chapter 3 AMI BIOS Setup 39 Network Appliance FWS 7840 3 3 Setup Submenu Main ...
Страница 53: ...Chapter 3 AMI BIOS Setup 40 Network Appliance FWS 7840 3 4 Setup Submenu Advanced ...
Страница 55: ...Chapter 3 AMI BIOS Setup 42 Network Appliance FWS 7840 3 4 2 PCH FW Configuration ...
Страница 60: ...Chapter 3 AMI BIOS Setup 47 Network Appliance FWS 7840 3 4 5 SIO Configuration ...
Страница 64: ...Chapter 3 AMI BIOS Setup 51 Network Appliance FWS 7840 3 4 6 Hardware Monitor ...
Страница 65: ...Chapter 3 AMI BIOS Setup 52 Network Appliance FWS 7840 3 4 6 1 Smart Fan Function ...
Страница 71: ...Chapter 3 AMI BIOS Setup 58 Network Appliance FWS 7840 Options Summary Select FunctionKey and KeyPad on Putty ...
Страница 77: ...Chapter 3 AMI BIOS Setup 64 Network Appliance FWS 7840 3 5 Setup Submenu Chipset ...
Страница 84: ...Chapter 3 AMI BIOS Setup 71 Network Appliance FWS 7840 3 8 Setup Submenu Save Exit ...
Страница 85: ...Network Appliance FWS 7840 Chapter 4 Chapter 4 Drivers Installation ...
Страница 87: ...Network Appliance FWS 7840 Appendix A Appendix A Watchdog Timer Programming ...
Страница 94: ...Network Appliance FWS 7840 Appendix B Appendix B Standard LAN Bypass Platform Setting ...
Страница 104: ...Network Appliance FWS 7840 Appendix C Appendix C Digital I O Ports ...