Easy Bluetooth RBT-001 problems
cjlutera
Posts: 2
I have been trying to connect to the RBT-001 board for a few days and I can't seem to get a confirmation message back from the chip. I am using a HCS12 microcontroller and am trying to communicate at 9600 baud. We try sending multiple commands but we never get any confirmation back. So far, this is one command we sent in c. We sent out this...
0x02,0x52,0x00,0x03,0x00,0x55,0x03,0x00,0x00,0x00
This special packet format is supposed to search for discoverable bluetooth devices and respond back.
Is there anything specific we need to know to solve this problem? Is there a first command or connection that needs to be satisfied?
Thanks in advance.
0x02,0x52,0x00,0x03,0x00,0x55,0x03,0x00,0x00,0x00
This special packet format is supposed to search for discoverable bluetooth devices and respond back.
Is there anything specific we need to know to solve this problem? Is there a first command or connection that needs to be satisfied?
Thanks in advance.
Comments
DEBUG CLS, "Starting", CR
PAUSE 5000
SEROUT TX, Baud, [noparse][[/noparse] $02, $52, $05, $00, $00, $57, $03 ] ' GAP_READ_LOCAL_BDA request
DEBUG "Sent"
SERIN RX, Baud, [noparse][[/noparse] STR inString \14 ] ' Read in CFM Packet length 14
I don't see why that shouldn't work. Any thoughts?
My ultimate goal is to connect multiple Easy Bluetooth modules in a Piconet, but have been unable to get more than one connection at a time. Has anyone else tried anything like this?