diff options
author | Jun Wako <wakojun@gmail.com> | 2015-09-24 01:35:10 +0900 |
---|---|---|
committer | Jun Wako <wakojun@gmail.com> | 2015-09-24 01:35:10 +0900 |
commit | 77afc5a76f5d299d606ab5b6d870a40aee9cb0e3 (patch) | |
tree | f564bf80e8f276c51c14367577815657184ac5eb /tmk_core/common | |
parent | 79fd952da44df3414652faeb777437feeba70319 (diff) |
core: Fix NKRO ifdef
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/command.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index 420e7eb9b4..d59bb01bbc 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c @@ -315,7 +315,9 @@ static bool command_common(uint8_t code) print_val_hex8(host_keyboard_leds()); print_val_hex8(keyboard_protocol); print_val_hex8(keyboard_idle); +#ifdef NKRO_ENABLE print_val_hex8(keyboard_nkro); +#endif print_val_hex32(timer_count); #ifdef PROTOCOL_PJRC |