Broadcom BCM43228 802.11a/b/g/n

i sorta made it usable, about 6Mb/s (yes bits)
have to test on 5GHz link when i get a chance
sysctl hw.bwn.crap_rx=3

C:
static int      crap_rx = 0; /* hack crappy rx on my bcm43228 */
// bit 0 => set RX antenna using the code for PHY_TYPE_G
// bit 1 => alternative values for short/long retries counters
SYSCTL_INT(_hw_bwn, OID_AUTO, crap_rx, CTLFLAG_RWTUN, &crap_rx, 0,
    "uses hacks around bad RX");
TUNABLE_INT("hw.bwn.crap_rx", &crap_rx);
 
Back
Top