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 6a96fc3 commit 82d9bd2Copy full SHA for 82d9bd2
examples/hid_composite/hid_composite.ino
@@ -40,8 +40,8 @@ enum
40
// HID report descriptor using TinyUSB's template
41
uint8_t const desc_hid_report[] =
42
{
43
- HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(RID_KEYBOARD), ),
44
- HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(RID_MOUSE), )
+ TUD_HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(RID_KEYBOARD), ),
+ TUD_HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(RID_MOUSE), )
45
};
46
47
Adafruit_USBD_HID usb_hid;
@@ -62,7 +62,7 @@ void setup()
62
Serial.begin(115200);
63
while ( !Serial ) delay(10); // wait for native usb
64
65
- Serial.println("Adafruit TinyUSB HID Composit example");
+ Serial.println("Adafruit TinyUSB HID Composite example");
66
}
67
68
void loop()
0 commit comments