Bluetooth não descobrindo nenhum dispositivo - Dell XPS 13 (16.04) [RESOLVIDO]

2

Eu olhei para outras soluções e threads para este problema, mas nenhum deles funcionou para mim. Estou usando um Dell XPS 13 para conectar meus novos fones de ouvido Jaybird X3. Até agora, o laptop não conseguiu detectar nem meus fones de ouvido nem meu celular.

EDIT: Todos os dispositivos estão no modo de descoberta. Eu tentei reinstalar o Bluetooth usando esta resposta link e ele não funcionou. Não sei porquê, mas agora o Assistente BLueman diz "Nenhum adaptador encontrado".

Eu executei alguns comandos no terminal e estes são os resultados:

$ status do serviço bluetooth sudo

bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
Active: active (running) since Wed 2017-07-19 10:46:20 AEST; 3min 30s ago
 Docs: man:bluetoothd(8)
Main PID: 1210 (bluetoothd)
Status: "Running"
CGroup: /system.slice/bluetooth.service
        └─1210 /usr/lib/bluetooth/bluetoothd

Jul 19 10:46:20 fsc0ciety systemd[1]: Starting Bluetooth service...
Jul 19 10:46:20 fsc0ciety bluetoothd[1210]: Bluetooth daemon 5.37
Jul 19 10:46:20 fsc0ciety bluetoothd[1210]: Unknown key AutoEnable in main.conf
Jul 19 10:46:20 fsc0ciety systemd[1]: Started Bluetooth service.
Jul 19 10:46:20 fsc0ciety bluetoothd[1210]: Starting SDP server
Jul 19 10:46:20 fsc0ciety bluetoothd[1210]: Bluetooth management interface 1.13 
Jul 19 10:49:35 fsc0ciety systemd[1]: Started Bluetooth service.

$ rfkill list

0: hci0: Bluetooth
    Soft blocked: no
    Hard blocked: no
1: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no
2: brcmwl-0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

$ lsusb

Bus 001 Device 002: ID 8087:8001 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 005: ID 0bda:5682 Realtek Semiconductor Corp. 
Bus 002 Device 004: ID 04f3:20d0 Elan Microelectronics Corp. 
Bus 002 Device 003: ID 0a5c:216f Broadcom Corp. BCM20702A0 Bluetooth
Bus 002 Device 002: ID 058f:6387 Alcor Micro Corp. Flash Drive
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

$ uname -a; lspci -nnk | grep -iA2 net; Isusb; dmesg | grep -i bluetooth; dmesg | grep -i firmware; lsmod | grep bluetoothLinux

Linux fsc0ciety 4.8.0-58-generic #63~16.04.1-Ubuntu SMP Mon Jun 26 18:08:51 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
02:00.0 Network controller [0280]: Broadcom Corporation BCM4352 802.11ac Wireless Network Adapter [14e4:43b1] (rev 03)
Subsystem: Dell BCM4352 802.11ac Wireless Network Adapter [1028:0019]
    Kernel driver in use: wl
    Kernel modules: bcma, wl
Bus 001 Device 002: ID 8087:8001 Intel Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 005: ID 0bda:5682 Realtek Semiconductor Corp. 
Bus 002 Device 004: ID 04f3:20d0 Elan Microelectronics Corp. 
Bus 002 Device 003: ID 0a5c:216f Broadcom Corp. BCM20702A0 Bluetooth
Bus 002 Device 002: ID 058f:6387 Alcor Micro Corp. Flash Drive
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
[    6.939516] Bluetooth: Core ver 2.21
[    6.939535] Bluetooth: HCI device and connection manager initialized
[    6.939539] Bluetooth: HCI socket layer initialized
[    6.939541] Bluetooth: L2CAP socket layer initialized
[    6.939546] Bluetooth: SCO socket layer initialized
[    7.074389] Bluetooth: hci0: BCM: chip id 63
[    7.090392] Bluetooth: hci0: BCM20702A
[    7.091389] Bluetooth: hci0: BCM20702A1 (001.002.014) build 0000
[    8.736332] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.736333] Bluetooth: BNEP filters: protocol multicast
[    8.736337] Bluetooth: BNEP socket layer initialized
[    9.184663] Bluetooth: hci0 command 0x213c tx timeout
[   17.376813] Bluetooth: hci0: BCM: Patch command 213c failed (-110)
[   19.392869] Bluetooth: hci0 command 0x0c03 tx timeout
[   27.617047] Bluetooth: hci0: BCM: Reset failed (-110)
[   29.633143] Bluetooth: hci0 command 0x0c03 tx timeout
[   37.857308] Bluetooth: hci0: BCM: Reset failed (-110)
    
por 0248881 18.07.2017 / 14:10

1 resposta

1

Consegui finalmente corrigir este problema graças a esta resposta: link

Passo 1 - Liste seus dispositivos usb

lsusb

(Exibido por Bluetooth para mim)

Bus 002 Device 002: ID 0a5c:216f Broadcom Corp. BCM20702A0 Bluetooth

Passo 2 - Acesse link para fazer o download o driver convertido que corresponde ao seu ID acima. Para mim isso foi BCM20702A1-0a5c-216f.hcd (Clique no arquivo para baixá-lo)

Passo 3 - Copie o arquivo baixado para /lib/firmware/brcm

cd ~/Downloads
sudo cp BCM20702A1-0a5c-216f.hcd /lib/firmware/brcm

Passo 4 - Reinicie. Bluetooth deve estar funcionando agora.

Se você receber este erro ao conectar seu dispositivo de áudio Bluetooth:

Connection Failed: blueman.bluez.errors.DBusFailedError: Protocol Not available

Solução: link

sudo apt-get install pulseaudio-module-bluetooth
pactl load-module module-bluetooth-discover

E, em seguida, exclua o dispositivo dos dispositivos Bluetooth e faça o emparelhamento novamente.

Espero que isso ajude você a conectar seus dispositivos de áudio Bluetooth.

    
por 0248881 20.07.2017 / 14:22