Hi engineers,
I want to achieve a demand that receive audio/HID data from the PC side through USB interface and transmit data through BLE to other devices.
So has the nRF SDK already included the example about UAC? Thanks!
Best Regards,
Sean
Hi engineers,
I want to achieve a demand that receive audio/HID data from the PC side through USB interface and transmit data through BLE to other devices.
So has the nRF SDK already included the example about UAC? Thanks!
Best Regards,
Sean
If you run the throughput example you can likely find that it will transfer over >1000kbps, this is high throughput that should be able to support audio, however for an audio solution you will need also to have control of the latency and also control the buffers (for instance you do not want to transfer audio data that is old). "Unfortunately" in BLE all data transfer is reliable, so you can't change data that have been buffered, so this can increase the latency by very much once you start to experience packet loss.
If you run the throughput example you can likely find that it will transfer over >1000kbps, this is high throughput that should be able to support audio, however for an audio solution you will need also to have control of the latency and also control the buffers (for instance you do not want to transfer audio data that is old). "Unfortunately" in BLE all data transfer is reliable, so you can't change data that have been buffered, so this can increase the latency by very much once you start to experience packet loss.