summaryrefslogtreecommitdiffstats
path: root/common/command.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-04-25 08:32:21 +0200
committertmk <nobody@nowhere>2014-04-26 21:16:49 +0200
commit5e3f2d2b2e5065a04495f2c55fae0849966b5d23 (patch)
tree4e224b2a2d6a6445ae489ab0b1c150cc3c4a83e4 /common/command.c
parent62117e7ea77bf036e4e08bb02d682311e3c3d401 (diff)
downloadqmk_firmware-5e3f2d2b2e5065a04495f2c55fae0849966b5d23.tar.gz
qmk_firmware-5e3f2d2b2e5065a04495f2c55fae0849966b5d23.tar.xz
Make NKRO deafult when it is available
- NKRO is used only when keyboard_protocol = 1(report)
Diffstat (limited to 'common/command.c')
-rw-r--r--common/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/command.c b/common/command.c
index f6f276951..d2f8eb832 100644
--- a/common/command.c
+++ b/common/command.c
@@ -301,13 +301,13 @@ static bool command_common(uint8_t code)
case KC_S:
print("\n\n----- Status -----\n");
print_val_hex8(host_keyboard_leds());
+ print_val_hex8(keyboard_protocol);
+ print_val_hex8(keyboard_idle);
#ifdef PROTOCOL_PJRC
print_val_hex8(UDCON);
print_val_hex8(UDIEN);
print_val_hex8(UDINT);
print_val_hex8(usb_keyboard_leds);
- print_val_hex8(usb_keyboard_protocol);
- print_val_hex8(usb_keyboard_idle_config);
print_val_hex8(usb_keyboard_idle_count);
#endif