HID report.
Synopsis:
typedef struct bt_hid_report {
bt_hid_report_type_t reportType ;
uint16_t dataLen ;
uint8_t * data ;
}bt_hid_report_t;
Data:
- bt_hid_report_type_t reportType
- Report type (input, output, or feature).
- uint16_t dataLen
- Length of the report data.
- uint8_t * data
- Pointer to the report data.
Library:
libbtapi (For the qcc command, use the -l btapi option to link against this library)
Description: