Code: Select all
4>acx: unknown EID 96 in mgmt frame at offset 89. IE: 60 6C DD 18 00 50 F2 02 01 01 84 00 03 A4 00 00
<4>27 A4 00 00 42 43 5E 00 62 32 2F 00 DD 09 00 03
<4>7F 01 01 00 00 FF 7F DD 0A 00 03 7F 04 01 00 20
<4>00 00 00 A0 00 E5 82 8C 00 0A 00 C4 60 01 00 7F
<4>01 01 00 00 FF 7F DD 0A 00 03 7F 04 01 00 20 00
<4>00 00 DD 0E 00 50 F2 04 10 4A 00 01 10 10 44 00
<4>01 02 F1 00 D7 82 DD 00 0A 00 14 61 01 00
Code: Select all
if ((adev->rx_config_1 & RX_CFG1_INCLUDE_PHY_HDR)
|| (adev->firmware_numver >= 0x02000000)){
if( IS_ACX111(adev) ){
adev->phy_header_len = (adev->radio_type == RADIO_UNKNOWN_1B) ? 28 : 8;
} else {
adev->phy_header_len = 4;
}
} else {
adev->phy_header_len = 0;
}
log(L_INIT, "setting phy_header_len to %04d\n", adev->phy_header_len );
To show the "L_INIT" debug output (which might be important in your case), you need to add acx_debug=2 as driver parameter.
Good luck.
PS: just for clarification - the driver only supports WEP encryption. No WPA...
<< attachment removed >>