]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - converter/usb_usb/main.cpp
Add USB Hub support
[tmk_firmware.git] / converter / usb_usb / main.cpp
index 4e655632e31a8ca5f54fa4fb3d08c52093a078c5..0b536b05aa80492bb8c60a8bb4570b70843332d0 100644 (file)
@@ -8,6 +8,7 @@
 #include "hid.h"
 #include "hidboot.h"
 #include "parser.h"
+#include "usbhub.h"
 
 // LUFA
 #include "lufa.h"
 static USB     usb_host;
 static HIDBoot<HID_PROTOCOL_KEYBOARD>    kbd(&usb_host);
 static KBDReportParser kbd_parser;
+static USBHub hub1(&usb_host);  // one hub is enough for HHKB pro2
+/* may be needed  for other device with more hub
+static USBHub hub2(&usb_host);
+static USBHub hub3(&usb_host);
+static USBHub hub4(&usb_host);
+static USBHub hub5(&usb_host);
+static USBHub hub6(&usb_host);
+static USBHub hub7(&usb_host);
+*/
 
 static void LUFA_setup(void)
 {