summaryrefslogtreecommitdiff
path: root/examples/device/hid_boot_interface
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2022-06-27 12:47:08 +0700
committerGitHub <[email protected]>2022-06-27 12:47:08 +0700
commitbc0f5502e283938f8172e193eb604483640822ab (patch)
treeb9235ea6447ddd65cc7718f76a34e8aa6dd6b2c6 /examples/device/hid_boot_interface
parent4639cac85cf959c3bfed091c02dce1345f067c7a (diff)
parent556b5d5044bd02e89d6b6c6f21e95d46f5fcdfc1 (diff)
Merge pull request #1533 from hathach/hid-report-len-uint16
Hid report len uint16
Diffstat (limited to 'examples/device/hid_boot_interface')
-rw-r--r--examples/device/hid_boot_interface/src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/hid_boot_interface/src/main.c b/examples/device/hid_boot_interface/src/main.c
index 21cdb383d..1958d614d 100644
--- a/examples/device/hid_boot_interface/src/main.c
+++ b/examples/device/hid_boot_interface/src/main.c
@@ -181,7 +181,7 @@ void tud_hid_set_protocol_cb(uint8_t instance, uint8_t protocol)
// Invoked when sent REPORT successfully to host
// Application can use this to send the next report
// Note: For composite reports, report[0] is report ID
-void tud_hid_report_complete_cb(uint8_t instance, uint8_t const* report, uint8_t len)
+void tud_hid_report_complete_cb(uint8_t instance, uint8_t const* report, uint16_t len)
{
(void) instance;
(void) report;