Hi,
I have a Nokia 6265i and pdaxii13 (sl-c3200) After a few problems and with help here I have gotten my BT/DUN working.
I made sure my Nokia was set to bluetooth on, phone visibility shown to all
On my Z in a shell window I used the following to search for my Nokia
hcitool scan
It showed my Nokia's Mac Address and its bt name.
in /etc/bluetooth/rfcomm.conf I have the following
rfcomm0 {
bind yes;
device ;
channel 1;
comment "My Comment";
}
The Mac Address is that of the Z's BT Adapter. You can verify it with:
hciconfig -a
in /etc/bluetooth/givepin I have the following:
if [ -f /etc/bluetooth/pin ]; then
echo "PIN:'cat /etc/bluetooth/pin' "
else
echo "PIN:1234"
fi
Modifying both the /etc/bluetooth/pin file adn the echo'd PIN: in the givepin file to a pin number
in /etc/bluetooth/hcid.conf make sure it points its pin_helper to the /etc/bluetooth/givepin file
Then I issue the following command:
rfcomm connect hci0 <Nodia MAC Address> 1
My Nokia will prompt to pair with my Z, I accept and enter the PIN.
If that is successfull just ctrl+c to cancel the connection.
I found that I had to first remove the existing rfcomm0.
If you issue the following you can see if there is an existing one:
rfcomm
If it returns and entry you can release it with
rfcomm release rfcomm0
Then try issuing the rfcomm connect command again.
Hope this helps to get it to connect.