web-dev-qa-db-fra.com

RTL8822BE périphérique Bluetooth

après avoir utilisé mon réseau wifi ( problèmes liés au sans fil du RLT 8822BE ), j'ai toujours des problèmes avec Bluetooth. C'est le même appareil que pour le wifi, le Realtek RTL8822BE. J'ai installé le noyau 4.14. D'une certaine manière c'est là. En tant que partie pertinente de

$ Sudo lshw 

montre:

*-usb:1
                   description: Bluetooth wireless interface
                   product: Bluetooth Radio
                   vendor: Realtek
                   physical id: 5
                   bus info: usb@1:5
                   version: 2.10
                   serial: 00e04c000001
                   capabilities: bluetooth usb-2.10
                   configuration: driver=btusb maxpower=500mA speed=12Mbit/s

Donc - je ne sais pas quoi faire. J'ai trouvé que: https://github.com/torvalds/linux/commit/1110a2dbe69831abdcf119c3a9a4c4ef2d0905f8#diff-73c18c51833f458295d18481beb9507aR37

mais je ne sais pas quoi en faire ...

Pouvez-vous m'aider?

Lui

Edit: Cela pourrait-il aider? j'ai tapé:

dmesg | grep -i blue
[    2.517473] usb 1-5: Product: Bluetooth Radio 
[    5.023742] Bluetooth: Core ver 2.22
[    5.023759] Bluetooth: HCI device and connection manager initialized
[    5.023762] Bluetooth: HCI socket layer initialized
[    5.023765] Bluetooth: L2CAP socket layer initialized
[    5.023770] Bluetooth: SCO socket layer initialized
[    5.051195] Bluetooth: HCI UART driver ver 2.3
[    5.051197] Bluetooth: HCI UART protocol H4 registered
[    5.051198] Bluetooth: HCI UART protocol BCSP registered
[    5.051216] Bluetooth: HCI UART protocol LL registered
[    5.051217] Bluetooth: HCI UART protocol ATH3K registered
[    5.051217] Bluetooth: HCI UART protocol Three-wire (H5) registered
[    5.051254] Bluetooth: HCI UART protocol Intel registered
[    5.051271] Bluetooth: HCI UART protocol Broadcom registered
[    5.051272] Bluetooth: HCI UART protocol QCA registered
[    5.051272] Bluetooth: HCI UART protocol AG6XX registered
[    5.051273] Bluetooth: HCI UART protocol Marvell registered
[    5.083272] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
[    5.373340] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.373342] Bluetooth: BNEP filters: protocol multicast
[    5.373345] Bluetooth: BNEP socket layer initialized
[    7.135385] Bluetooth: hci0 command 0x1001 tx timeout
[   15.327417] Bluetooth: hci0: HCI_OP_READ_LOCAL_VERSION failed (-110)
[   15.677974] usb 1-5: Product: Bluetooth Radio 
[   15.679651] Bluetooth: hci0: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822
[   15.679653] Bluetooth: hci0: rtl: loading rtl_bt/rtl8822b_config.bin
[   15.685329] Bluetooth: hci0: rtl: loading rtl_bt/rtl8822b_fw.bin
[   15.686830] Bluetooth: hci0: rom_version status=0 version=2
[   15.686837] Bluetooth: cfg_sz 14, total size 20270
[   21.586992] Bluetooth: RFCOMM TTY layer initialized
[   21.586999] Bluetooth: RFCOMM socket layer initialized
[   21.587008] Bluetooth: RFCOMM ver 1.11
[   38.862067] usb 1-5: Product: Bluetooth Radio 
[   39.028085] Bluetooth: hci0: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822
[   39.028087] Bluetooth: hci0: rtl: loading rtl_bt/rtl8822b_config.bin
[   39.028144] Bluetooth: hci0: rtl: loading rtl_bt/rtl8822b_fw.bin
[   39.029844] Bluetooth: hci0: rom_version status=0 version=2
[   39.029852] Bluetooth: cfg_sz 14, total size 20270

Spécialement la ligne:

[5.083272] thinkpad_acpi: commutateur rfkill tpacpi_bluetooth_sw: la radio est bloquée

semble suspect, non?

Des idées?

Quand j'essaye:

$ dmesg | egrep -i 'blue|firm
> 

..et rien pendant plus de 10 minutes.

2
Lui

En fait, le problème pourrait provenir du fait que votre installation ne possède pas le firmware pour bluetooth.

cd /lib/firmware/rtl_bt
Sudo wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/rtl_bt/rtl8822b_config.bin
Sudo wget https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/plain/rtl_bt/rtl8822b_fw.bin

Puis arrêter et démarrer

2
Jeremy31