I have been trying to increase the speed of my PAN1315 radio hooked up to my LM3S9B96 using a modified version of the SPP example.
It seems like it would be possible to change the 115200 setting in bluetooth.c:
// Configure the UART Parameters and Initialize the Bluetooth Stack.
//
HCI_DRIVER_SET_COMM_INFORMATION(&sDriverInformation, 1, 115200,
cpUART);
However if I change it to 921600, 460800, 230400 or 57600 the whole Bluetooth module fails to initalize.
I did verify using my scope that the UART is outputting at 230400 when I have it programmed to that. Any ideas on what I can do differently to support faster baud rates? I would like to operate at 921600 baud as my application needs 432000 baud through the bluetooth link. I was able to get about half that using the MSP430 solution, i was hoping to get much better throughput with the Stellaris part. Thus far however I have not seen any throughput data, is that available somewhere?
Thanks!
Ben