chan_bluetooth problem

Hello !

I have a Jabra A320s bluetooth dongle a Moto H500 and a Nokia 6230i
My Asterisk gives this error message:

Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:2233 rfcomm_listen: Listening for RFCOMM channel 3 connections on FD 13
Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:2233 rfcomm_listen: Listening for RFCOMM channel 2 connections on FD 14
Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:2233 rfcomm_listen: Listening for RFCOMM channel 4 connections on FD 15
Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:2277 sco_listen: Listening for SCO connections on FD 17
Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:2129 sdp_register: HeadsetAudioGateway service registered
Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:2179 sdp_register: HeadsetAudioGateway service registered
Jan 1 00:01:20 NOTICE[859]: chan_bluetooth.c:3564 load_module: Loaded Bluetooth support, Rev: 6526 $
… ]
Asterisk Ready.
*CLI> Jan 1 00:01:22 NOTICE[867]: chan_bluetooth.c:2509 try_connect: RFCOMM connect start.
Jan 1 00:01:22 NOTICE[867]: chan_bluetooth.c:2511 try_connect: RFCOMM connect done.
Jan 1 00:01:22 WARNING[867]: chan_bluetooth.c:2514 try_connect: NBIO connect() to AutoBlue returned 2: No such file or directory
Jan 1 00:01:22 NOTICE[867]: chan_bluetooth.c:2509 try_connect: RFCOMM connect start.
Jan 1 00:01:22 NOTICE[867]: chan_bluetooth.c:2511 try_connect: RFCOMM connect done.
Jan 1 00:01:22 WARNING[867]: chan_bluetooth.c:2514 try_connect: NBIO connect() to Nokia returned 2: No such file or directory

The devices are paired.

What means this warning message? Could you help me?

Thank you!

has it ever worked? What are your configs?

Hello!

No it hasn’t worked, it is a fresh install. Here are the config files. I removed the AutoBlue Moto HS500 headset to easier troubleshooting.

root@OpenWrt:~#ls -al /dev/rfcomm0
crw-r–r-- 1 root root 216, 0 Jan 1 01:48 /dev/rfcomm0

root@OpenWrt:~# hcitool cc 00:12:62:59:86:CF
root@OpenWrt:~# hcitool conn
Connections:
< ACL 00:12:62:59:86:CF handle 12 state 1 lm MASTER

root@OpenWrt:~# cat /etc/bluetooth/hcid.conf

options {
autoinit yes;
security auto;
pairing multi;
pin_helper /etc/bluetooth/givepin;
}

device {
name “Asterisk”;
class 0x200404;
iscan enable; pscan enable;
lm accept;
lp rswitch,hold,sniff,park;
}

root@OpenWrt:~# cat /etc/bluetooth/rfcomm.conf
rfcomm0 {
bind no;
device 00:12:62:59:86:CF;
channel 13;
comment “Nokia”;
}

root@OpenWrt:~# cat /etc/asterisk/bluetooth.conf
[general]
rfchannel_hs = 2
rfchannel_ag = 3
rfchannel_gui = 4
interface = 0

[00:12:62:59:86:CF]
name = Nokia
type = AG
channel = 13
autoconnect = yes

Thank you!