WiFi与蓝牙共存:Qualcomm Atheros ar9462:Ubuntu 16.04

WiFi与蓝牙共存:Qualcomm Atheros ar9462:Ubuntu 16.04

我在富士通 UH552 上运行 Ubuntu 16.04。在我连接蓝牙无线耳机之前,一切都运行良好。我的机器有高通 atheros ar9462(wifi + 蓝牙)模块。

问题:如果我同时使用蓝牙耳机和 WiFi,它们会相互干扰,WiFi 速度会变慢,耳机音频会出现故障。有什么建议可以解决这个问题吗?

注意:通过谷歌搜索,我找到了这个解决方案

sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi bt_coex_active=N"

但这对我来说不起作用。

答案1

由于您的是 Atheros 无线设备而非 Intel,因此 Intel 的驱动程序参数不起作用也就不足为奇了。让我们尝试一个更好的选择:

sudo -i
rm /etc/modprobe.d/iwlwifi-opt.conf
echo "options ath9k btcoex_enable=1"  >  /etc/modprobe.d/ath9k.conf
exit

重新启动并让我们听取您的报告。

相关内容