Skip to content

Commit 82d9bd2

Browse files
committed
clean up
1 parent 6a96fc3 commit 82d9bd2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/hid_composite/hid_composite.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ enum
4040
// HID report descriptor using TinyUSB's template
4141
uint8_t const desc_hid_report[] =
4242
{
43-
HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(RID_KEYBOARD), ),
44-
HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(RID_MOUSE), )
43+
TUD_HID_REPORT_DESC_KEYBOARD( HID_REPORT_ID(RID_KEYBOARD), ),
44+
TUD_HID_REPORT_DESC_MOUSE ( HID_REPORT_ID(RID_MOUSE), )
4545
};
4646

4747
Adafruit_USBD_HID usb_hid;
@@ -62,7 +62,7 @@ void setup()
6262
Serial.begin(115200);
6363
while ( !Serial ) delay(10); // wait for native usb
6464

65-
Serial.println("Adafruit TinyUSB HID Composit example");
65+
Serial.println("Adafruit TinyUSB HID Composite example");
6666
}
6767

6868
void loop()

0 commit comments

Comments
 (0)