summaryrefslogtreecommitdiff
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2017-01-22 18:58:46 -0500
committerGitHub <noreply@github.com>2017-01-22 18:58:46 -0500
commita54944ac335aab86e16ee2acb528c041da1e4c6c (patch)
tree19e71aa784e94b1a2cb591a78c758b23ced200f5 /tmk_core/common/command.c
parent405b2ae267be8f010517b6ed4d6da92b7de41ef9 (diff)
parent84661ac44b15bd5e60cc223779fea05784672011 (diff)
Merge pull request #1021 from luizribeiro/ps2avrGB
Support for ps2avrGB / winkeyless.kr boards
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index 5f29bc0b4e..f79d5a257b 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -235,8 +235,11 @@ static void print_status(void)
print("\n\t- Status -\n");
print_val_hex8(host_keyboard_leds());
+#ifndef PROTOCOL_VUSB
+ // these aren't set on the V-USB protocol, so we just ignore them for now
print_val_hex8(keyboard_protocol);
print_val_hex8(keyboard_idle);
+#endif
#ifdef NKRO_ENABLE
print_val_hex8(keymap_config.nkro);
#endif