Skip to content

Commit bcd3340

Browse files
committed
bluetooth: update the default BLE connection parameters
Modify the connection interval default min/max values at 6-40 (7.5-50ms). Change-Id: I8804effe60679bff59bd56cf532986d133686295 Signed-off-by: Rock Shen <rock_shen@asus.com>
1 parent 8cf27ec commit bcd3340

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

net/bluetooth/hci_core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3271,8 +3271,8 @@ struct hci_dev *hci_alloc_dev(void)
32713271
hdev->le_adv_max_interval = 0x0800;
32723272
hdev->le_scan_interval = 0x0060;
32733273
hdev->le_scan_window = 0x0030;
3274-
hdev->le_conn_min_interval = 0x0028;
3275-
hdev->le_conn_max_interval = 0x0038;
3274+
hdev->le_conn_min_interval = 0x0006;
3275+
hdev->le_conn_max_interval = 0x0028;
32763276
hdev->le_conn_latency = 0x0000;
32773277
hdev->le_supv_timeout = 0x002a;
32783278
hdev->le_def_tx_len = 0x001b;

0 commit comments

Comments
 (0)