From 5415113f9fc6cad3e4ab204ca0c3279e4d2e73c8 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 20 May 2016 14:26:01 +0200 Subject: [PATCH] cc256x: follow recommendations for SCO over HCI --- chipset/cc256x/btstack_chipset_cc256x.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/chipset/cc256x/btstack_chipset_cc256x.c b/chipset/cc256x/btstack_chipset_cc256x.c index 2a3719ec9..63289ec2f 100644 --- a/chipset/cc256x/btstack_chipset_cc256x.c +++ b/chipset/cc256x/btstack_chipset_cc256x.c @@ -88,9 +88,10 @@ static int16_t init_power_in_dB = 13; // 13 dBm // support for SCO over HCI #ifdef ENABLE_SCO_OVER_HCI static int init_send_route_sco_over_hci = 0; -// route SCO over HCI (connection type=1, tx buffer size = 0x00 (don't change), tx buffer max latency=0x0000(don't chnage)), accept packets - 0) +// Follow recommendation from https://e2e.ti.com/support/wireless_connectivity/bluetooth_cc256x/f/660/t/397004 +// route SCO over HCI (connection type=1, tx buffer size = 120, tx buffer max latency= 720, accept packets with CRC Error static const uint8_t hci_route_sco_over_hci[] = { - 0x10, 0xfe, 0x05, 0x01, 0x00, 0x00, 0x00, 0x00 + 0x10, 0xfe, 0x05, 0x01, 0x78, 0xd0, 0x02, 0x01, }; #endif