boaz_r n00b
Joined: 01 Dec 2007 Posts: 1
|
Posted: Sat Dec 01, 2007 4:15 pm Post subject: Palm Treo 650 + Bluetooth sync - NOGO |
|
|
Hi,
I've been reading most of the documentation out there regarding the subject (and beyond). I've read this: http://www.gentoo.org/doc/en/bluetooth-guide.xml and several others and the end result is that I cannot seem to sync my treo with my Gentoo box.
I seem to be able to talk to my Treo with rfcomm, after defining the /etc/bluetooth/rfcomm and hcid.conf. But when I try to sync my Treo I get from it a message about its unable to communicate with the PC - probably serial port already taken (or something similar). I'm used to syncing the Treo via a USB cable with Kontact. Worked great.
I'm pretty sure that I'm "close to it" but I cannot seem to find the missing link(s). I'm a newbie to bluetooth (not to other things) and not familiar with the protocol itself or the architecture in which its implemented in Gentoo. I think that current tutorials are for bluez v2.x, not for v3.x . For example, there's no running daemon on my machine named sdpd. I do have sdptool (command) but no daemon is running, as mentioned by most tutorials out there.
Any help would be appreciated!
Thanks,
Boaz.
My configuration:
~Running amd64 Gentoo. Kernel have the right things inside (please let me know if you need details, and what). Everything seems to be compiled with USE="bluetooth", including kdebluetooth, bluez-utils, bluez-libs, bluez-firmware (and several others).
hcid.conf
Code: |
[/url]#
# HCI daemon configuration file.
#
# HCId options
options {
# Automatically initialize new devices
autoinit yes;
# Security Manager mode
# none - Security manager disabled
# auto - Use local PIN for incoming connections
# user - Always ask user for a PIN
#
# BR: changes below made according to: http://www.gentoo.org/doc/en/bluetooth-guide.xml
security auto;
#security user;
#security user;
# Pairing mode
# none - Pairing disabled
# multi - Allow pairing with already paired devices
# once - Pair once and deny successive attempts
pairing multi;
# Default PIN code for incoming connections
# passkey "mysecret";
}
# Default settings for HCI devices
device {
# Local device name
# %d - device id
# %h - host name
name "%h BlueTooth (%d)";
# Local device class
class 0x000100;
# Default packet type
#pkt_type DH1,DM1,HV1;
# Inquiry and Page scan
iscan enable; pscan enable;
# Default link mode
# none - no specific policy
# accept - always accept incoming connections
# master - become master on incoming connections,
# deny role switch on outgoing connections
lm accept;
# Default link policy
# none - no specific policy
# rswitch - allow role switch
# hold - allow hold mode
# sniff - allow sniff mode
# park - allow park mode
lp rswitch,hold,sniff,park;
}
|
rfcomm.conf
Code: |
#
# RFCOMM configuration file.
#
rfcomm0 {
# Automatically bind the device at startup
bind yes;
# Bluetooth address of the device
device 00:07:E0:27:BB:AA;
# RFCOMM channel for the connection
channel 1;
# Description of the connection
comment "My Treo 650";
}
|
|
|