summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2011-02-21 15:43:17 +0900
committertmk <nobody@nowhere>2011-02-22 03:09:14 +0900
commitfb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch)
tree2f5d695f9d501468dc83f4861e7367cdf905ed3f /command.c
parent47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff)
integrate V-USB support into ps2_usb
Diffstat (limited to 'command.c')
-rw-r--r--command.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/command.c b/command.c
index a31a4007b3..0152ccd87b 100644
--- a/command.c
+++ b/command.c
@@ -8,7 +8,7 @@
#include "util.h"
#include "timer.h"
#include "layer.h"
-#include "matrix_skel.h"
+#include "matrix.h"
#include "command.h"
#ifdef HOST_PJRC
@@ -107,6 +107,8 @@ uint8_t command_proc(void)
break;
#ifdef USB_NKRO_ENABLE
case KB_N:
+ host_clear_keyboard_report();
+ host_send_keyboard_report();
keyboard_nkro = !keyboard_nkro;
if (keyboard_nkro)
print("USB_NKRO: enabled\n");