mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-05 06:08:22 +00:00
Bluetooth: Change initial min and max interval
Use the initial connection interval recommended in Bluetooth Specification v4.2 (30ms - 50ms). Signed-off-by: Jonas Holmberg <jonashg@axis.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
cd50361c21
commit
b48c3b59a3
1 changed files with 2 additions and 2 deletions
|
@ -2950,8 +2950,8 @@ struct hci_dev *hci_alloc_dev(void)
|
|||
hdev->le_adv_max_interval = 0x0800;
|
||||
hdev->le_scan_interval = 0x0060;
|
||||
hdev->le_scan_window = 0x0030;
|
||||
hdev->le_conn_min_interval = 0x0028;
|
||||
hdev->le_conn_max_interval = 0x0038;
|
||||
hdev->le_conn_min_interval = 0x0018;
|
||||
hdev->le_conn_max_interval = 0x0028;
|
||||
hdev->le_conn_latency = 0x0000;
|
||||
hdev->le_supv_timeout = 0x002a;
|
||||
hdev->le_def_tx_len = 0x001b;
|
||||
|
|
Loading…
Add table
Reference in a new issue