summaryrefslogtreecommitdiff
path: root/common/command.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2012-10-09 16:50:14 +0900
committertmk <nobody@nowhere>2012-10-17 15:55:37 +0900
commit71ac82337f803e8ec0c081b3221ac0ccf61035b0 (patch)
tree5692c88c0b16d7f4992321c19a82f5193ebe4dc2 /common/command.c
parent373ab0e7192811944786c095facb80938c33f1d5 (diff)
Clean host.h interface.
Diffstat (limited to 'common/command.c')
-rw-r--r--common/command.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/common/command.c b/common/command.c
index f9cdaf57de..16c6cfb889 100644
--- a/common/command.c
+++ b/common/command.c
@@ -78,8 +78,6 @@ static uint8_t command_common(void)
help();
break;
case KC_B:
- host_clear_keyboard_report();
- host_send_keyboard_report();
print("jump to bootloader... ");
_delay_ms(1000);
bootloader_jump(); // not return
@@ -157,9 +155,6 @@ static uint8_t command_common(void)
break;
#ifdef NKRO_ENABLE
case KC_N:
- // send empty report before change
- host_clear_keyboard_report();
- host_send_keyboard_report();
keyboard_nkro = !keyboard_nkro;
if (keyboard_nkro)
print("NKRO: enabled\n");
@@ -169,8 +164,6 @@ static uint8_t command_common(void)
#endif
#ifdef EXTRAKEY_ENABLE
case KC_ESC:
- host_clear_keyboard_report();
- host_send_keyboard_report();
#ifdef HOST_PJRC
if (suspend && remote_wakeup) {
usb_remote_wakeup();