Hi!
I have connected a bluetooth module with EVM5515 through UART. I would know If there are any source code or examples of using this bluetooth module with A2DP profile or just sending and receiving commands.
Thank you
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Are you using the PAN1323 Bluetooth Evaluation Kit? StoneStreetOne is our partner in this matter. Please contact them directly via www.stonestreetone.com.
Regards.
Hi Albert,
Could you elaborate a little on what you are trying to do with 5515 and Bluetooth?
Thanks.
Mr. Torn,
I would get the user's guide from Microchip:
http://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en560765
Make sure you have the C5515 UART configured correctly; especially baud-rate.
Try sending it commands via software and printing the result to the console to make sure they are handled correctly.
Regards,
Bill
It is solved. The problem was that I didn't send the correct commands via UART. Now, i put every character on UART like this:
while
((UART_LSR & 0x60)==0);
UART_THR =
'S';
while((UART_LSR & 0x60)==0);
UART_THR =
'|';
I don't know If there are a more efficient way to send some characters via UART, and not one by one.
Thank you