I am running the GA1.0 release (modified accelerometer demo to work on custom hardware). I'm trying to simply trying to pass data between Bluetooth SPP and a UART running at 78K. I have SNIFF mode disabled and am disabling RTS in the UART interrupt. No processing is done in the Interrupt, other than a write to a buffer and a semaphore take. I have a low priority task that handles buffering. This setup works for smaller amounts of data, but once I start throttling up to a full 78K of throughput, the software can no longer keep up with the UART interrupts. My attempts at fixing this have alwalys lead to one of three outcomes: my UART interrupt overflowing, the BT UART interrupt overflowing, or my UART buffer overflowing when the Stack can't manage to send the data in time. The developer guide says that at 18 MHz and 115K, the average data throughput is 84K, and the average CPU utilization is 10.7% yet the software can't keep up with a 78K UART. In my current setup, there is no other processing other than the BT stack. Does anyone have any suggestions?