summaryrefslogtreecommitdiffstats
path: root/converter
diff options
context:
space:
mode:
authorJun Wako <wakojun@gmail.com>2014-12-10 15:52:38 +0100
committerJun Wako <wakojun@gmail.com>2014-12-10 15:52:38 +0100
commitc9674d388d3b018cb1dfc0a34868642be53e913c (patch)
treef0eee87adea47bf2ed5d5554f54f1e7aca40f544 /converter
parent0a181c7eb58b79405ee91e7fca9f827678424872 (diff)
downloadqmk_firmware-c9674d388d3b018cb1dfc0a34868642be53e913c.tar.gz
qmk_firmware-c9674d388d3b018cb1dfc0a34868642be53e913c.tar.xz
Add USB Hub support
Diffstat (limited to 'converter')
-rw-r--r--converter/usb_usb/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/converter/usb_usb/main.cpp b/converter/usb_usb/main.cpp
index 4e655632e..0b536b05a 100644
--- a/converter/usb_usb/main.cpp
+++ b/converter/usb_usb/main.cpp
@@ -8,6 +8,7 @@
#include "hid.h"
#include "hidboot.h"
#include "parser.h"
+#include "usbhub.h"
// LUFA
#include "lufa.h"
@@ -23,6 +24,15 @@
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)
{