diff options
author | tmk <tmk@users.noreply.github.com> | 2014-07-07 12:01:01 +0900 |
---|---|---|
committer | tmk <tmk@users.noreply.github.com> | 2014-07-07 12:01:01 +0900 |
commit | 3eeb0a96232af825962fa1e9b05b80ac1cfd1868 (patch) | |
tree | 9efb1e78f73998755bfe49df9a2f99ffceada33b /common/command.c | |
parent | 326e559719505e64b4dd4cc4020c4656252cba64 (diff) | |
parent | e5bafff725f7b9cbfc364e64c74ea7f68bfc9900 (diff) | |
download | qmk_firmware-3eeb0a96232af825962fa1e9b05b80ac1cfd1868.tar.gz |
Merge pull request #112 from shayneholmes/ee_nkro_use_reserved_bit
Adding NKRO virtual dip-switch, using existing bit in keymap byte.
Diffstat (limited to 'common/command.c')
-rw-r--r-- | common/command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/command.c b/common/command.c index d2f8eb832..2c65f0da7 100644 --- a/common/command.c +++ b/common/command.c @@ -151,6 +151,7 @@ static void print_eeconfig(void) print(".no_gui: "); print_dec(kc.no_gui); print("\n"); print(".swap_grave_esc: "); print_dec(kc.swap_grave_esc); print("\n"); print(".swap_backslash_backspace: "); print_dec(kc.swap_backslash_backspace); print("\n"); + print(".nkro: "); print_dec(kc.nkro); print("\n"); #ifdef BACKLIGHT_ENABLE backlight_config_t bc; |