From 5d354db0cd2349942e868eca63f736b16cfd80e7 Mon Sep 17 00:00:00 2001 From: Archana Ramachandran Date: Mon, 23 Jan 2012 16:31:09 -0800 Subject: [PATCH] Bluetooth: Increased the LE connection supervision timeout Increased the LE supervision timeout to 10 seconds so that concurrent operations can be performed with LE connection. Change-Id: I34cc53d1a0eb8943de11fc35580a27b037b87b2f Signed-off-by: Archana Ramachandran --- net/bluetooth/hci_conn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index f0f2ac1508a..899c538b0aa 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -65,7 +65,7 @@ static void hci_le_connect(struct hci_conn *conn) cp.peer_addr_type = conn->dst_type; cp.conn_interval_min = cpu_to_le16(0x0008); cp.conn_interval_max = cpu_to_le16(0x0100); - cp.supervision_timeout = cpu_to_le16(0x0064); + cp.supervision_timeout = cpu_to_le16(1000); cp.min_ce_len = cpu_to_le16(0x0001); cp.max_ce_len = cpu_to_le16(0x0001);