diff options
author | tmk <nobody@nowhere> | 2014-04-29 19:46:37 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-04-29 19:46:37 +0900 |
commit | abe5edcaa7c6391cb313a672910d7beb9b7d8fa2 (patch) | |
tree | 2c2db0c519245c56e1f0528e2d70f771e1de51c1 /protocol | |
parent | b03717a10ce84c906e149c9f673fa3ffa686ef80 (diff) |
Fix set LED for NKRO keyboard interface
Diffstat (limited to 'protocol')
-rw-r--r-- | protocol/lufa/lufa.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocol/lufa/lufa.c b/protocol/lufa/lufa.c index 9f8e50c4e6..d60aecc3f1 100644 --- a/protocol/lufa/lufa.c +++ b/protocol/lufa/lufa.c @@ -272,6 +272,7 @@ void EVENT_USB_Device_ControlRequest(void) // Interface switch (USB_ControlRequest.wIndex) { case KEYBOARD_INTERFACE: + case NKRO_INTERFACE: Endpoint_ClearSETUP(); while (!(Endpoint_IsOUTReceived())) { |