HID forward module
Use the HID forward module for the following purposes:
Receive the HID input reports from the peripherals connected over Bluetooth®.
Forward the HID input reports in report or boot protocol.
Forward the Configuration channel data between the peripherals connected over Bluetooth and the host.
Module events
Source Module |
Input Event |
This Module |
Output Event |
Sink Module |
---|---|---|---|---|
|
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Note
See the Application overview for more information about the event-based communication in the nRF Desktop application and about how to read this table.
Configuration
Complete the following steps to configure the module:
Complete the basic Bluetooth configuration, as described in nRF Desktop: Bluetooth. Make sure that both CONFIG_DESKTOP_ROLE_HID_DONGLE and CONFIG_DESKTOP_BT_CENTRAL are enabled. The HID forward application module is enabled by the CONFIG_DESKTOP_HID_FORWARD_ENABLE option which is implied by the CONFIG_DESKTOP_BT_CENTRAL option together with other application modules. These modules are required for HID dongle that forwards the data from HID peripherals connected over Bluetooth.
The CONFIG_DESKTOP_HID_FORWARD_ENABLE option selects
CONFIG_BT_HOGP
to automatically enable the GATT Human Interface Device Service (HIDS) Client. An nRF Desktop dongle does not generate its own HID input reports. The dongle uses HID forward module to forward the HID reports. The reports are received by the HID service client from the peripherals connected over Bluetooth.Note
The maximum number of supported HID reports (
CONFIG_BT_HOGP_REPORTS_MAX
) is set by default for the nRF Desktop dongle, which supports two peripherals with an average of six HID reports each. Make sure to align this configuration value for other use cases, for example, if the dongle supports more peripherals.The CONFIG_DESKTOP_HID_FORWARD_ENABLE option selects CONFIG_DESKTOP_HID_REPORTQ to automatically enable the HID report queue utility. The HID report queue utility is used to locally enqueue reports at the source to prevent HID report drops. If needed, you can update the maximum number of enqueued HID reports (CONFIG_DESKTOP_HID_REPORTQ_MAX_ENQUEUED_REPORTS). See HID report queue utility documentation for details.
Check the chosen HID boot protocol. The nRF Desktop dongle can forward either mouse or keyboard boot reports. The forwarded boot report type is specified using the following Kconfig options:
CONFIG_DESKTOP_HID_BOOT_INTERFACE_KEYBOARD - This option enables forwarding keyboard boot reports.
CONFIG_DESKTOP_HID_BOOT_INTERFACE_MOUSE - This option enables forwarding mouse boot reports.
Those options affect USB state module that subscribes for HID boot reports. The Dongle forwards HID reports from both mouse and keyboard, and so either option works if you want to have the Dongle work as boot mouse or boot keyboard. For more information about the configuration of the HID boot protocol, see the boot protocol configuration section in the USB state module documentation.
Make sure that the value of CONFIG_DESKTOP_HID_FORWARD_SUBSCRIBER_COUNT Kconfig option matches number of USB HID class instances configured in USB state module. nRF Desktop dongle can use one or more instances of the USB HID class. By default, the module uses a dedicated HID subscriber (USB HID class instance) for every BLE bonded HID peripheral. For more details about interactions with USB, see the Interaction with the USB section.
Implementation details
This section describes the functioning of the HID forward module.
Interaction with the USB
The USB state module can be configured to have one or more instances of the HID-class USB device.
If there is more than one instance of the HID-class USB device, this number must match the maximum number of bonded Bluetooth peripheral devices.
Each USB HID class instance subscribes to HID reports forwarded by the HID forward module.
Each USB HID class instance is assigned a separate HID report queue utility instance when the related HID subscriber connects.
The assigned HID report queue instance is freed when the related HID subscriber disconnects.
Subscriber state changes are tracked relying on hid_report_subscriber_event
.
The HID forward module has an array of subscribers, one for each HID-class USB device. The possible cases that impact how the host to which the nRF desktop dongle is connected interprets the reports are as follows:
Number of HID-class USB devices is equal to number of bonded peripheral devices. In this case:
Reports from every bonded peripheral will be forwarded to a dedicated HID-class USB device.
The host can distinguish the source of the report.
Only one HID-class USB device is used. In this case:
Reports from all peripherals will be forwarded to a single HID-class USB device.
The host cannot distinguish the source of the report.
When reports are forwarded to the USB state module, each HID-class USB device is treated independently. This means that the HID forward module can concurrently send reports to every available HID-class USB device, if a report from the linked peripheral is available.
When received by the module, the HID boot protocol reports come with the report ID assigned to REPORT_ID_RESERVED
.
This ID is later changed by the HID forward module to either REPORT_ID_BOOT_KEYBOARD
or REPORT_ID_BOOT_MOUSE
.
The choice depends on fact, if the Bluetooth device is boot mouse or keyboard.
While receiving a subscription event, the HID forward module updates the HID protocol of peripherals connected through Bluetooth that are associated with the given subscriber.
Forwarding HID input reports
After Bluetooth LE discovery module successfully discovers a connected peripheral, the HID forward module automatically subscribes for every HID input report provided by the peripheral. The subscriber can use either the HID boot protocol or the HID report protocol, but both protocols cannot be used at the same time. In the current implementation, the USB state module supports either the HID boot keyboard or the HID boot mouse reports, because the application does not support assigning HID boot protocol code separately for each USB HID instance.
The hogp_read()
callback is called when HID input report is received from the connected peripheral.
The received HID input report data is passed to the HID report queue and converted to a hid_report_event
.
The hid_report_event
is submitted by the HID report queue and the HID-class USB device configured by USB state module forwards it to the host.
When a HID report is sent to the host by the HID-class USB instance, the HID forward module receives a hid_report_sent_event
with the identifier of the instance.
The HID forward module notifies the HID report queue to ensure proper HID report flow.
Enqueuing incoming HID input reports
USB HID class instances limit the maximum number of HID input reports that can be handled simultaneously. The number of HID input reports received from HID peripherals connected over Bluetooth LE may exceed the limit. If needed, the HID forward module relies on the HID report queue to locally enqueue HID input reports before providing them to the USB HID subscriber. All HID input reports received from a HID peripheral go through the HID report queue utility associated with a given USB HID instance.
Forwarding HID output reports
When the HID forward module receives a hid_report_event
that contains an output report from a USB state module, it tries to forward the output report.
The HID output report is forwarded to all of the Bluetooth connected peripherals that forward the HID data to the HID subscriber that is source of the HID output report.
The HID output report is never forwarded to peripheral that does not support it.
If the GATT write without response operation is in progress for the given HID output report ID and connected peripheral, the report is placed in a queue and sent later. The HID forward module sends information only about the last received HID output report with given ID. If changes of state related to the HID output report with the given ID are frequent, some intermediate states can be omitted by the HID forward module.
Bluetooth Peripheral disconnection
On a peripheral disconnection, nRF Desktop central informs the host that all the pressed keys reported by the peripheral are released. This is done to make sure that the user will not observe a problem with a key stuck on peripheral disconnection.
Configuration channel data forwarding
The HID forward module forwards the Configuration channel data between the host and the peripherals connected over Bluetooth. The data is exchanged with the peripheral connected over Bluetooth using HID feature report or HID output report.
In contrast to HID configurator for nRF Desktop, the HID forward module does not use configuration channel request to get hardware ID (HW ID) of the peripheral. The peripheral identification on nRF Desktop central is based on the HW ID that is received from Bluetooth LE discovery module when peripheral discovery is completed. The peripheral uses Device description module to provide the HW ID to the nRF Desktop central.
The HID forward module only forwards the configuration channel requests that come from the USB connected host, it does not generate its own requests.
For more details, see Configuration channel documentation.