Problemas de conexão Wifi resolvidos, por que minha "correção" funciona?
Quando o bt_coex_active está ativado, ele impede a interferência sem fio ou Bluetooth. Quando desativado, permitirá maior interferência sem fio / Bluetooth.
-
bt_coex_active=1
(true) impede a interferência sem fio / Bluetooth. -
bt_coex_active=0
(false) permite maior interferência sem fio / Bluetooth.
A maneira como o recurso funciona é que, quando ele está ligado, o transceptor wlan evita a transmissão ao mesmo tempo que o transceptor bluetooth.
Em algumas implementações com bugs, ele acha que o Bluetooth está transmitindo o tempo todo, "silenciando" a WLAN completamente, então desativá-la permitirá que a WLAN funcione novamente.
coexistência de 802.11 com Bluetooth
An 802.11 device and Bluetooth can interfere with each other when the 802.11 device operates on the 2.4 GHz band. All Bluetooth devices operate at the 2.4 GHz band. This section documents the technical details regarding the causes of interferences and solutions implemented in drivers, the 802.11 stack, and possible future enhancements.
...
Interferência
Each 802.11 channel then equals to 20 Bluetooth channels. When communication is enabled on an Bluetooth device you will get interference when the Bluetooth device hops on to any of the 20 Bluetooth channels equivalent to your 802.11 channel. Even if a Bluetooth device hops at the max allowed frequency rate of 1600 frequency hops per second there are only 79 channels available so at this rate each channel will be used around 20 times in a second.
Fonte coexistência com o Bluetooth 802.11
Extrato do código-fonte:
/* * set bt_coex_active to true, uCode will do kill/defer * every time the priority line is asserted (BT is sending signals on the * priority line in the PCIx). * set bt_coex_active to false, uCode will ignore the BT activity and * perform the normal operation * * User might experience transmit issue on some platform due to WiFi/BT * co-exist problem. The possible behaviors are: * Able to scan and finding all the available AP * Not able to associate with any AP * On those platforms, WiFi communication can be restored by set * "bt_coex_active" module parameter to "false" * * default: bt_coex_active = true (BT_COEX_ENABLE) */
Fonte: iwl-core.c