1
Zaurus - pdaXrom / Socket BlueTooth?
« on: October 17, 2004, 09:50:22 pm »
OK, I finally got things to at least appear on hciconfig and be able to pair/browse services with sdptool. I haven't made this work all nice and automatically when I stick the card in yet, but for now (and for anyone in the future looking for this), the trick is hciattach. The default drivers and stuff seem to work automatically, but you need to 'hciattach /dev/ttyS3 bcsp 230400' by hand. Also, you may need the serial "patch" (it's a script replacement for like /etc/pcmcia/serial) from the Zaurus Bluetooth HOWTO (but *not* the driver package). I have this installed but I don't know if it makes a difference or not.
After doing the hciattach, hciconfig should show you your card, and sdptool should be able to use it. *Additionally*, if you're trying to pair to browse, make sure in /etc/bluetooth/hcid.conf your pin_helper or whatever is set to something that works. Mine by default was set to some broken python script (but I repeat myself). Replacing it with something simple like this does the trick:
Anyhow, as a final note, the RIM BlackBerries do not do dialup networking. Even the bluetooth ones (I was using one of the brand spanking new 7100t's here). I called T-Mobile tech support and was cited some BS line about "security". Whatever. (It's too bad, because the phone was otherwise kinda neat.)
Hope that helps someone. If I get some scripts working automatically for this later I'll post them.
After doing the hciattach, hciconfig should show you your card, and sdptool should be able to use it. *Additionally*, if you're trying to pair to browse, make sure in /etc/bluetooth/hcid.conf your pin_helper or whatever is set to something that works. Mine by default was set to some broken python script (but I repeat myself). Replacing it with something simple like this does the trick:
Code: [Select]
#!/bin/sh
echo PIN:1234
Anyhow, as a final note, the RIM BlackBerries do not do dialup networking. Even the bluetooth ones (I was using one of the brand spanking new 7100t's here). I called T-Mobile tech support and was cited some BS line about "security". Whatever. (It's too bad, because the phone was otherwise kinda neat.)
Hope that helps someone. If I get some scripts working automatically for this later I'll post them.