mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-31 19:20:26 +00:00
hci: set minimum and maximum CE length to 0
This commit is contained in:
parent
d4876126bb
commit
24d14ae36e
@ -42,6 +42,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
|
||||
## Changed
|
||||
- GAP: add gap_set_peer_privacy_mode with default LE_PRIVACY_MODE_DEVICE
|
||||
- GAP: use stack defaults for LE Connection Parameter Updates
|
||||
- GAP: set minimum and maximum CE length to 0
|
||||
- bluetooth: indicated identity address in resolved address type names
|
||||
- chipset/bcm: look for PatchRAM file DEVICE_NAME...hcd
|
||||
- btstack_audio: added get_samplerate function to help with audio sample rate synchronization
|
||||
|
@ -4654,8 +4654,8 @@ void hci_init(const hci_transport_t *transport, const void *config){
|
||||
hci_stack->le_connection_interval_max = 0x0018; // 30 ms
|
||||
hci_stack->le_connection_latency = 4; // 4
|
||||
hci_stack->le_supervision_timeout = 0x0048; // 720 ms
|
||||
hci_stack->le_minimum_ce_length = 2; // 1.25 ms
|
||||
hci_stack->le_maximum_ce_length = 0x0030; // 30 ms
|
||||
hci_stack->le_minimum_ce_length = 0; // 0 ms
|
||||
hci_stack->le_maximum_ce_length = 0; // 0 ms
|
||||
hci_stack->le_connection_phys = 0x01; // LE 1M PHY
|
||||
|
||||
// default LE Scanning
|
||||
|
Loading…
x
Reference in New Issue
Block a user