User guide

Network Appliance FWS-2200
Appendix C Standard Firewall Platform Setting C-10
LAN3 & 4 Power On ByPass Mode Set
BP_MODE = 0x00 - Pass Through Mode
= 0x01 - By Pass Mode
*/
VOID LAN34_PWRON_BP()
{
UINT8 TEMP8;
SEL_PAIR(0x01) ; // Select Pair II
TEMP8 = IoIn8(LANBP_BASE_ADDR + 1) & 0xFE;
TEMP8 |= BP_MODE;
IoOut8(LANBP_BASE_ADDR + 1, TEMP8);
EXE_SET(); // Execute Set
}
/*
LAN3 & 4 Power Off ByPass Mode Set
BP_MODE = 0x00 - Pass Through Mode
= 0x01 - By Pass Mode
*/
VOID LAN34_PWROFF_BP()
{
UINT8 TEMP8;