diff --git a/teensy/teensy-usb.cpp b/teensy/teensy-usb.cpp index 08ab225..c06c78e 100644 --- a/teensy/teensy-usb.cpp +++ b/teensy/teensy-usb.cpp @@ -2,12 +2,19 @@ #include #include "teensy-usb.h" +// There are multiple hubs here because without them, USB ports won't work +// if it's a chained hub device. From what I've read, most hubs are 4-port +// devices -- but there are 7-port hubs, which use 2 chained hub chips, so +// for all the USB ports to work on those hubs we have to have 2 hub objects +// managing them. I've decided to limit this to 2 hub objects. USBHost myusb; USBHub hub1(myusb); USBHub hub2(myusb); -USBHub hub3(myusb); + +// One could have multiple keyboards? I think I'm not going to support that +// just yet, until I understand all of this better. KeyboardController keyboard1(myusb); -KeyboardController keyboard2(myusb); +//KeyboardController keyboard2(myusb); TeensyUSB::TeensyUSB() { @@ -25,13 +32,13 @@ void TeensyUSB::init() void TeensyUSB::attachKeypress(keyboardCallback cb) { keyboard1.attachRawPress(cb); - keyboard2.attachRawPress(cb); + // keyboard2.attachRawPress(cb); } void TeensyUSB::attachKeyrelease(keyboardCallback cb) { keyboard1.attachRawRelease(cb); - keyboard2.attachRawRelease(cb); + // keyboard2.attachRawRelease(cb); } void TeensyUSB::maintain()