Skip to content

Commit 6f56178

Browse files
committed
hid for usb host
1 parent 9691c9f commit 6f56178

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

Diff for: cores/arduino/stm32/usb_host/hid/usb_host_hid.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifdef USBHOST
2+
3+
#include "usbh_hid.c"
4+
5+
#endif /* USBHOST */
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifdef USBHOST
2+
3+
#include "usbh_hid_keybd.c"
4+
5+
#endif /* USBHOST */
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifdef USBHOST
2+
3+
#include "usbh_hid_mouse.c"
4+
5+
#endif /* USBHOST */
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#ifdef USBHOST
2+
3+
#include "usbh_hid_parser.c"
4+
5+
#endif /* USBHOST */

0 commit comments

Comments
 (0)