We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 217fe38 commit 3faad03Copy full SHA for 3faad03
cores/arduino/Adafruit_TinyUSB_Core/tinyusb/src/class/hid/hid_device.c
@@ -78,7 +78,7 @@ bool tud_hid_ready(void)
78
79
bool tud_hid_report(uint8_t report_id, void const* report, uint8_t len)
80
{
81
- TU_VERIFY( tud_hid_ready() && (len < CFG_TUD_HID_BUFSIZE) );
+ TU_VERIFY( tud_hid_ready() && (len <= CFG_TUD_HID_BUFSIZE) );
82
83
uint8_t itf = 0;
84
hidd_interface_t * p_hid = &_hidd_itf[itf];
0 commit comments