diff options
| author | hathach <[email protected]> | 2022-07-17 22:46:16 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2022-07-17 22:56:07 +0700 |
| commit | b495d6f8ec263e51b0683ab85ff9e54dab6f5fd3 (patch) | |
| tree | c70424e3bd22b5955e6e39d09e0c3d41da6fa16b /examples/device/hid_composite/src | |
| parent | 868f2bcda092b0b8d5f7ac55ffaef2c81316d35e (diff) | |
temporarily revert len back to uint8_t in tud_hid_report_complete_cb() for up coming release
Diffstat (limited to 'examples/device/hid_composite/src')
| -rw-r--r-- | examples/device/hid_composite/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/device/hid_composite/src/main.c b/examples/device/hid_composite/src/main.c index 05315f266..f7d76cfc7 100644 --- a/examples/device/hid_composite/src/main.c +++ b/examples/device/hid_composite/src/main.c @@ -225,7 +225,7 @@ void hid_task(void) // 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) len; |
