3

I am running Ubuntu 16.04 on Fujitsu UH552. Every thing has been working fine until I connected Bluetooth wireless headphone. My machine has qualcomm atheros ar9462 (wifi + bluetooth) module.

Problem: If I use both Bluetooth headphone and WiFi at the same time they interfere, WiFi slows down and audio on headphone has glitches. Any suggestion how to solve this issue?

Note:Upon googling I found this solution

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

but this is not working for me.

SHAHS
  • 252
  • 1
  • 4
  • 12

1 Answers1

4

Since yours is an Atheros wireless device and not an Intel, it is not surprising that a driver parameter for an Intel is not working. Let's try a better option:

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

Reboot and let us hear your report.

chili555
  • 61,330