Appendix C – Standard LAN Bypass Platform Setting
97
Net
work
Ap
plian
ce
FW
S-
2273
C.2.2 Sample Code
*****************************************************************************************
*****
#define Byte CPLD_SLAVE_ADDRESS //This parameter is represented from Note1
#define Byte OFFSET
//This parameter is represented from Note2
*****************************************************************************************
*****
// Select Lan Pair
BYTE bLanSel = LAN_PAIR;
BYTE bData = SmbusReadByte(CPLD_SLAVE_ADDRESS, OFFSET);
// Set Reg01h bit3
if(bLanSel & 0x08)
bData = bData | 0x08;
else
bData = bData & 0xF7;
// Set Reg01h bit2
if(bLanSel & 0x04)
bData = bData | 0x04;
else
bData = bData & 0xFB;
// Set Reg01h bit1
if(bLanSel & 0x02)
bData = bData | 0x02;
else
bData = bData & 0xFD;
// Set Reg01h bit0
if(bLanSel & 0x01)
bData = bData | 0x01;
else
bData = bData & 0xFE;
// Power On Action (Reg01h bit6)
if(SET_PASS_THROUGH) // Pass Through
bData = bData & 0xBF;
else
// Bypass
bData = bData | 0x40;
// Power Off Action (Reg01h bit5)
if(SET_PASS_THROUGH) // Pass Through
Summary of Contents for Aaeon FWS-2273
Page 1: ...FWS 2273 Desktop Network Appliance User s Manual 2nd Ed ...
Page 13: ...Desktop Network Appliance FWS 2273 Chapter 1 Chapter 1 Product Specifications ...
Page 17: ...Desktop Network Appliance FWS 2273 Chapter 2 Chapter 2 Hardware Information ...
Page 18: ...Chapter 2 Hardware Information 18 Network Appliance FWS 2273 2 1 Dimensions System ...
Page 19: ...Chapter 2 Hardware Information 19 Network Appliance FWS 2273 Board Component Side Solder Side ...
Page 21: ...Chapter 2 Hardware Information 21 Network Appliance FWS 2273 Solder Side ...
Page 32: ...Chapter 2 Hardware Information 32 Network Appliance FWS 2273 10 Lock the screw ...
Page 35: ...Desktop Network Appliance FWS 2273 Chapter 3 Chapter 3 AMI BIOS Setup ...
Page 38: ...Chapter 3 AMI BIOS Setup 38 Network Appliance FWS 2273 3 3 Setup Submenu Main ...
Page 39: ...Chapter 3 AMI BIOS Setup 39 Network Appliance FWS 2273 3 4 Setup Submenu Advanced ...
Page 47: ...Chapter 3 AMI BIOS Setup 47 Network Appliance FWS 2273 3 4 6 Advanced SIO Configuration ...
Page 60: ...Chapter 3 AMI BIOS Setup 60 Network Appliance FWS 2273 3 5 Setup submenu Chipset ...
Page 65: ...Chapter 3 AMI BIOS Setup 65 Network Appliance FWS 2273 3 8 Setup submenu Exit ...
Page 66: ...Desktop Network Appliance FWS 2273 Chapter 4 Chapter 4 Driver Installation ...
Page 68: ...Desktop Network Appliance FWS 2273 Appendix A Appendix A Watchdog Timer Programming ...
Page 75: ...Desktop Network Appliance FWS 2273 Appendix B Appendix B I O Information ...
Page 76: ...Appendix B I O Information 76 Network Appliance FWS 2273 B 1 I O Address Map ...
Page 77: ...Appendix B I O Information 77 Network Appliance FWS 2273 ...
Page 78: ...Appendix B I O Information 78 Network Appliance FWS 2273 B 2 Memory Address Map ...
Page 79: ...Appendix B I O Information 79 Network Appliance FWS 2273 ...
Page 80: ...Appendix B I O Information 80 Network Appliance FWS 2273 B 3 IRQ Mapping Chart ...
Page 81: ...Appendix B I O Information 81 Network Appliance FWS 2273 ...
Page 82: ...Appendix B I O Information 82 Network Appliance FWS 2273 ...
Page 83: ...Appendix B I O Information 83 Network Appliance FWS 2273 ...
Page 84: ...Appendix B I O Information 84 Network Appliance FWS 2273 ...
Page 85: ...Appendix B I O Information 85 Network Appliance FWS 2273 ...
Page 86: ...Appendix B I O Information 86 Network Appliance FWS 2273 ...
Page 87: ...Appendix B I O Information 87 Network Appliance FWS 2273 ...
Page 88: ...Appendix B I O Information 88 Network Appliance FWS 2273 ...
Page 89: ...Desktop Network Appliance FWS 2273 Appendix C Appendix C Standard LAN Bypass Platform Setting ...