diff options
| author | Ha Thach <[email protected]> | 2022-07-19 12:16:32 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-07-19 12:16:32 +0700 |
| commit | ed2e587ace6fcbb1cb4b2d414622eca1d9ffb7ee (patch) | |
| tree | 8840d52bcd22016b317683293dff24a85cb799b4 /examples/device/hid_boot_interface/src | |
| parent | 2110e276783e2f97f2a942b082355f1d4a181573 (diff) | |
| parent | b495d6f8ec263e51b0683ab85ff9e54dab6f5fd3 (diff) | |
Merge pull request #1568 from hathach/revert-hid-callback-len-temporarily
temporarily revert len back to uint8_t in tud_hid_report_complete_cb() 0.14.0 release
Diffstat (limited to 'examples/device/hid_boot_interface/src')
| -rw-r--r-- | examples/device/hid_boot_interface/src/main.c | 2 |
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 1958d614d..71afa3f46 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, uint16_t len) +void tud_hid_report_complete_cb(uint8_t instance, uint8_t const* report, /*uint16_t*/ uint8_t len) { (void) instance; (void) report; |
