diff options
author | tmk <nobody@nowhere> | 2011-03-10 00:50:27 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-03-10 11:17:54 +0900 |
commit | cec254950509038ca9c805e87feea9091d77d29f (patch) | |
tree | c4f542b18dc080e32508aced1ee0ccce5cbf3a53 /command.c | |
parent | 1a7c3585ed9a68099e371b3180a404dd5d08ce1a (diff) |
FIX: send last report when idle timeouts. (pjrc)
Diffstat (limited to 'command.c')
-rwxr-xr-x[-rw-r--r--] | command.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/command.c b/command.c index 7afed5d7bf..cd51b79cb3 100644..100755 --- a/command.c +++ b/command.c @@ -102,7 +102,10 @@ uint8_t command_proc(void) print("UDCON: "); phex(UDCON); print("\n"); print("UDIEN: "); phex(UDIEN); print("\n"); print("UDINT: "); phex(UDINT); print("\n"); - print("host_keyboard_leds:"); phex(host_keyboard_leds()); print("\n"); + print("usb_keyboard_leds:"); phex(usb_keyboard_leds); print("\n"); + print("usb_keyboard_protocol: "); phex(usb_keyboard_protocol); print("\n"); + print("usb_keyboard_idle_config:"); phex(usb_keyboard_idle_config); print("\n"); + print("usb_keyboard_idle_count:"); phex(usb_keyboard_idle_count); print("\n"); #endif break; #ifdef USB_NKRO_ENABLE |