From 0480a587e6972a777bbde1a563ac08dad3e662a8 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 11 Nov 2015 12:09:00 +0100 Subject: [PATCH] use 8 bit signed audio frames in SCO --- src/hci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hci.c b/src/hci.c index 410682d48..775abe70c 100644 --- a/src/hci.c +++ b/src/hci.c @@ -2308,7 +2308,7 @@ void hci_run(void){ hci_send_cmd(&hci_accept_connection_request, connection->address, 1); } else { // TODO: allows to customize synchronous connection parameters - hci_send_cmd(&hci_accept_synchronous_connection, connection->address, 8000, 8000, 0xFFFF, 0x0060, 0xFF, 0x003F); + hci_send_cmd(&hci_accept_synchronous_connection, connection->address, 8000, 8000, 0xFFFF, 0x0040, 0xFF, 0x003F); } return;