diff options
author | tmk <nobody@nowhere> | 2011-02-21 15:43:17 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-02-22 03:09:14 +0900 |
commit | fb8d23c60c757d5d9c2270cb0123a53be2049a28 (patch) | |
tree | 2f5d695f9d501468dc83f4861e7367cdf905ed3f /command.c | |
parent | 47f5d8b545eec12ca74d8e7048bb5daa290d937e (diff) |
integrate V-USB support into ps2_usb
Diffstat (limited to 'command.c')
-rw-r--r-- | command.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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"); |