Operating System: Manjaro Linux
KDE Plasma Version: 6.5.5
KDE Frameworks Version: 6.23.0
Qt Version: 6.10.2
Kernel Version: 6.19.2-1-MANJARO (64-bit)
Graphics Platform: Wayland
Processors: 12 × AMD Ryzen 5 5600G with Radeon Graphics
Memory: 17 GB of RAM (16.1 GB usable)
Graphics Processor: AMD Radeon Graphics
I created a script to connect and disconnect my phone audio for playing podcasts when I’m back at home…
The script used bluetoothctl to detect whether the phone was connected, but it failed the detection.
Troubleshooting this issue I tried to verify:
bluetoothctl disconnect 08:A5:DF:D7:41:36
bluetoothctl connect 08:A5:DF:D7:41:36
Both worked as expected.
bluetoothctl info 08:A5:DF:D7:41:36
bluetoothctl list
bluetoothctl devices
These three fail silently with no indication of failure, except zero output before presenting me with the usual green ‘success’ chevron prompt.
Anyway, I had to work around this in my script, replacing the section:
is_device_connected() {
bluetoothctl info "$DEVICE_MAC" | grep -q "Connected: yes"
}
With this:
Summary
is_device_connected() {
local mac_underscore="${DEVICE_MAC//:/_}"
# Sink check
if pactl list short sinks 2>/dev/null | grep -qi "$mac_underscore"; then
return 0
fi
# Source check
if pactl list short sources 2>/dev/null | grep -qi "$mac_underscore"; then
return 0
fi
# Card connection property check
if pactl list cards 2>/dev/null | awk -v mac="$mac_underscore" '
/Card/ {in_card=0}
/bluez_card\.'$mac_underscore'/ {in_card=1}
in_card && /api.bluez5.connection = "connected"/ {found=1; exit}
END {exit !found}
'; then
return 0
fi
So whilst I have fixed my issue - the bug seems to remain.
Does anyone else have this issue?
As usual, jctl offers a ton of spam on bluetooth issues:
Summary
➤ journalctl -p3 -xb --no-hostname | rg bluetooth
Feb 19 19:20:44 (udev-worker)[560]: 3-2.1.2.3: /etc/udev/rules.d/91-bluetooth-wakeup.rules:1 ATTR{power/wakeup}="enabled": Could not chase sysfs attribute "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2.3/power/wakeup", ignoring: No such file or directory
Feb 19 19:20:49 bluetoothd[871]: profiles/audio/bap.c:bap_adapter_probe() BAP requires ISO Socket which is not enabled
Feb 19 19:20:49 bluetoothd[871]: bap: Operation not supported (95)
Feb 19 19:20:49 bluetoothd[871]: Failed to set default system config for hci0
Feb 19 19:20:59 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:20:59 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:21:17 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:21:17 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:21:24 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:21:24 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:21:43 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:21:43 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:21:50 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:21:50 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:22:10 bluetoothd[871]: src/profile.c:record_cb() No SDP records found for QBluetoothSocket-2029
Feb 19 19:24:03 bluetoothd[871]: profiles/audio/transport.c:set_delay_report() Unable to set delay: Invalid argument (-22)
Feb 19 19:24:05 bluetoothd[871]: No matching connection for device
Feb 19 19:24:11 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:24:11 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:25:53 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:25:53 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:26:11 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:26:11 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:26:12 bluetoothd[871]: No matching connection for device
Feb 19 19:26:12 bluetoothd[871]: src/profile.c:ext_io_disconnected() Unable to get io data for Hands-Free unit: getpeername: Transport endpoint is not connected (107)
Feb 19 19:26:17 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:26:17 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:27:59 bluetoothd[871]: No matching connection for device
Feb 19 19:28:05 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:28:05 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:28:21 bluetoothd[871]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 19 19:28:21 bluetoothd[871]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 19 19:28:28 bluetoothd[871]: No matching connection for device
Feb 19 23:36:08 bluetoothd[871]: profiles/deviceinfo/deviceinfo.c:read_pnpid_cb() Error reading PNP_ID value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:proto_mode_read_cb() Protocol Mode characteristic read failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:08 bluetoothd[871]: profiles/input/hog-lib.c:info_read_cb() HID Information read failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 19 23:36:09 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 19 23:36:09 bluetoothd[871]: profiles/deviceinfo/deviceinfo.c:read_pnpid_cb() Error reading PNP_ID value: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:proto_mode_read_cb() Protocol Mode characteristic read failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:36:09 bluetoothd[871]: profiles/input/hog-lib.c:info_read_cb() HID Information read failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 19 23:44:55 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 19 23:44:55 bluetoothd[871]: profiles/input/hog-lib.c:info_read_cb() HID Information read failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 06:45:26 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 06:45:26 bluetoothd[871]: profiles/deviceinfo/deviceinfo.c:read_pnpid_cb() Error reading PNP_ID value: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:proto_mode_read_cb() Protocol Mode characteristic read failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 06:45:26 bluetoothd[871]: profiles/input/hog-lib.c:info_read_cb() HID Information read failed: Request attribute has encountered an unlikely error
Feb 20 06:45:32 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 06:45:32 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 06:45:34 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 06:45:34 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 09:12:21 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 09:12:21 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 09:12:23 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 09:12:23 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 10:44:24 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 10:44:24 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 10:44:26 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 10:44:26 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 17:07:06 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 17:07:06 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 17:07:08 bluetoothd[871]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 17:07:08 bluetoothd[871]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 17:27:43 bluetoothd[871]: profiles/ranging/rap.c:rap_detached() unable to find session
Feb 20 17:27:45 bluetoothd[871]: profiles/audio/bap.c:bap_adapter_probe() BAP requires ISO Socket which is not enabled
Feb 20 17:27:45 bluetoothd[871]: bap: Operation not supported (95)
Feb 20 17:27:45 bluetoothd[871]: Failed to set default system config for hci0
Feb 20 17:27:46 (udev-worker)[339636]: 3-2.1.2.3: /etc/udev/rules.d/91-bluetooth-wakeup.rules:1 ATTR{power/wakeup}="enabled": Could not chase sysfs attribute "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2.3/power/wakeup", ignoring: No such file or directory
Feb 20 17:27:46 bluetoothd[871]: profiles/ranging/rap.c:rap_detached() unable to find session
Feb 20 17:27:46 bluetoothd[871]: profiles/deviceinfo/deviceinfo.c:read_pnpid_cb() Error reading PNP_ID value: Request attribute has encountered an unlikely error
Feb 20 17:27:46 systemd-coredump[339811]: Process 871 (bluetoothd) of user 0 dumped core.
#1 0x000055b67fe045c6 n/a (/usr/lib/bluetooth/bluetoothd + 0xb05c6)
#5 0x000055b67fd5e2ac n/a (/usr/lib/bluetooth/bluetoothd + 0xa2ac)
#8 0x000055b67fd5f545 n/a (/usr/lib/bluetooth/bluetoothd + 0xb545)
░░ Subject: Process 871 (bluetoothd) dumped core
░░ Process 871 (bluetoothd) crashed and dumped core.
Feb 20 17:27:49 bluetoothd[339855]: profiles/audio/bap.c:bap_adapter_probe() BAP requires ISO Socket which is not enabled
Feb 20 17:27:49 bluetoothd[339855]: bap: Operation not supported (95)
Feb 20 17:27:49 bluetoothd[339855]: Failed to set default system config for hci0
Feb 20 17:27:49 (udev-worker)[339636]: 3-2.1.2.3: /etc/udev/rules.d/91-bluetooth-wakeup.rules:1 ATTR{power/wakeup}="enabled": Could not chase sysfs attribute "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2.3/power/wakeup", ignoring: No such file or directory
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:proto_mode_read_cb() Protocol Mode characteristic read failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_read_cb() Error reading Report value: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:report_reference_cb() Read Report Reference descriptor failed: Request attribute has encountered an unlikely error
Feb 20 17:27:50 bluetoothd[339855]: profiles/input/hog-lib.c:info_read_cb() HID Information read failed: Request attribute has encountered an unlikely error
Feb 20 17:27:53 bluetoothd[339855]: profiles/ranging/rap.c:rap_detached() unable to find session
Feb 20 17:27:56 bluetoothd[339855]: profiles/audio/bap.c:bap_adapter_probe() BAP requires ISO Socket which is not enabled
Feb 20 17:27:56 bluetoothd[339855]: bap: Operation not supported (95)
Feb 20 17:27:56 bluetoothd[339855]: Failed to set default system config for hci0
Feb 20 17:27:56 (udev-worker)[339983]: 3-2.1.2.3: /etc/udev/rules.d/91-bluetooth-wakeup.rules:1 ATTR{power/wakeup}="enabled": Could not chase sysfs attribute "/sys/devices/pci0000:00/0000:00:08.1/0000:04:00.3/usb3/3-2/3-2.1/3-2.1.2/3-2.1.2.3/power/wakeup", ignoring: No such file or directory
Feb 20 21:22:54 bluetoothd[339855]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 20 21:22:54 bluetoothd[339855]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 20 21:23:08 bluetoothd[339855]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 20 21:23:08 bluetoothd[339855]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 20 21:31:12 bluetoothd[339855]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 20 21:31:12 bluetoothd[339855]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 20 21:34:04 bluetoothd[339855]: src/profile.c:ext_io_disconnected() Unable to get io data for Hands-Free unit: getpeername: Transport endpoint is not connected (107)
Feb 20 21:34:22 bluetoothd[339855]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 20 21:34:22 bluetoothd[339855]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
Feb 20 21:34:22 bluetoothd[339855]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 21:34:22 bluetoothd[339855]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 21:34:23 bluetoothd[339855]: profiles/ranging/rap.c:rap_accept() RAP unable to attach
Feb 20 21:34:23 bluetoothd[339855]: src/service.c:service_accept() rap profile accept failed for C5:27:44:D3:36:24
Feb 20 21:43:08 bluetoothd[339855]: No matching connection for device
Feb 20 21:43:26 bluetoothd[339855]: profiles/audio/hfp-hf.c:hfp_connect() unable to start connection
Feb 20 21:43:26 bluetoothd[339855]: src/service.c:btd_service_connect() hfp profile connect failed for 08:A5:DF:D7:41:36: Input/output error
I’m guessing it’s some kind of upstream issue with Bluez stack or something?
Update
Apparently waiting for a merge: