Python code for Bluetooth throws error after I had to reset the adapter

折月煮酒 提交于 2019-11-30 00:48:30

This error is due to incompatibility issues with BlueZ 5 and SDP with bluetoothd

Fix for 15.10 and BlueZ 5

Make sure, running sdptool browse local gives following error:

Failed to connect to SDP server on FF:FF:FF:00:00:00: No such file or directory

As it turns out, the culprit is bluetoothd, the Bluetooth daemon. Using SDP with bluetoothd requires deprecated features for some silly reason, so to fix this, the daemon must be started in compatibility mode with bluetoothd -C (or bluetooth --compat).

Find location of bluetooth.service by:

systemctl status bluetooth.service

Then edit bluetooth.service and look for

ExecStart=/usr/libexec/bluetooth/bluetoothd

Append --compat at the end of this line, save, and then run

service bluetooth start

If all goes well, you should be able to successfully run

sudo sdptool browse local

Finally, reset the adapter:

sudo hciconfig -a hci0 reset

Things should work fine now

Old answer

Just to let people know, I believe the latest BlueZ build was somehow broken in my system. I downloaded, compiled and installed the 5.35 version, and nothing was working. I dialed down to 5.34, still same. I also noticed that the bluetooth adapter was going down automatically 3-4 minutes after enabling it using,

sudo hciconfig hci0 up # hci0 is the bt adapter

I used one usb bluetooth dongle to test. It did not go down automatically like the inbuilt adapter, but the problems persisted. Then I used apt-get to reinstall bluez,

apt-get install --reinstall bluez

and all of a sudden everything came back to normal.

Gaurav Kumar

Again, as sidmeister mentioned, Make sure, running sdptool browse local gives following error:

Failed to connect to SDP server on FF:FF:FF:00:00:00: No such file or directory

But,for those who are using initd system manager, its hard to find a solution if you want to execute sdp_rfcomm_server/client model and the terminal will keep on showing same error again and again. So for init.d follow these steps:

  1. Stop bluetooth first

    $ /etc/init.d/bluetooth stop

  2. Status check

    $ /etc/init.d/bluetooth status

  3. Run bluetooth in compatibility mode(don't forget ampersand,otherwise prompt won't turn up )

    $ /usr/libexec/bluetooth/bluetoothd --compat&

  4. start bluetooth again

    $ /etc/init.d/bluetooth start

  5. again try sdpbrowse

    $ sdptool browse local

Things should work for you now.

To fix:

bluetooth.btcommon.BluetoothError: (2, 'No such file or directory')

You need to:

  1. sudo nano /lib/systemd/system/bluetooth.service
  2. Change from: ExecStart=/usr/lib/bluetooth/bluetoothd
  3. To: ExecStart=/usr/lib/bluetooth/bluetoothd --compat
  4. sudo systemctl daemon-reload
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!