Bluetooth LE connection parameters module
Use the Bluetooth® LE connection parameters module to:
Update the connection parameters after the peripheral discovery.
React on connection parameter update requests from the connected peripherals.
Module Events
Source Module |
Input Event |
This Module |
Output Event |
Sink Module |
---|---|---|---|---|
|
|
|||
|
||||
|
||||
|
||||
|
Note
See the Overview: Firmware architecture for more information about the event-based communication in the nRF Desktop application and about how to read this table.
Configuration
The module requires the basic Bluetooth configuration, as described in Bluetooth in nRF Desktop.
The module is automatically enabled for every nRF Desktop central device (CONFIG_BT_CENTRAL
).
Implementation details
The Bluetooth® LE connection parameters module receives the peripheral’s connection parameters update request as ble_peer_conn_params_event
.
The module updates only the connection latency.
The connection interval and supervision timeout are not changed according to the peripheral’s request.
Note
On the peripheral side, the Bluetooth connection latency is controlled by Bluetooth LE latency module.
LLPM connections
The Low Latency Packet Mode (LLPM) connection parameters are not supported by the standard Bluetooth.
The LLPM connection parameters update requires using vendor-specific HCI commands. Moreover, the peripheral cannot request the LLPM connection parameters using Zephyr Bluetooth® API.
Connection interval update
After the Bluetooth LE discovery module completes the peripheral discovery, the Bluetooth® LE connection parameters module updates the connection parameters in the following manner:
If the central and the connected peripheral both support the Low Latency Packet Mode (LLPM), the connection interval is set to 1 ms.
If neither the central nor the connected peripheral support LLPM, or if only one of them supports it, the interval is set to the following values:
7.5 ms if LLPM is not supported by the central or
CONFIG_BT_MAX_CONN
is set to value 2 or lower. This is the shortest interval allowed by the standard Bluetooth.10 ms otherwise. This is required to avoid Bluetooth Link Layer scheduling conflicts that could lead to HID report rate drop.