summaryrefslogtreecommitdiff
path: root/quantum/command.c
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-10-27 11:21:13 +1000
committerGitHub <noreply@github.com>2023-10-27 12:21:13 +1100
commitdb4e3bb232af27ef79ad0f5a4b17c828f283334a (patch)
treea5a8851899cd08cff54e459420a9154f114f0daf /quantum/command.c
parentc5716f84ada7f142c99cb89f685b06a0c9d8601b (diff)
V-USB: Fix `GET_IDLE/SET_IDLE` (#22332)
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
Diffstat (limited to 'quantum/command.c')
-rw-r--r--quantum/command.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/quantum/command.c b/quantum/command.c
index aa64b75064..c188638eb4 100644
--- a/quantum/command.c
+++ b/quantum/command.c
@@ -222,21 +222,16 @@ static void print_status(void) {
"\n\t- Status -\n"
"host_keyboard_leds(): %02X\n"
-#ifndef PROTOCOL_VUSB
"keyboard_protocol: %02X\n"
"keyboard_idle: %02X\n"
-#endif
#ifdef NKRO_ENABLE
"keymap_config.nkro: %02X\n"
#endif
"timer_read32(): %08lX\n"
, host_keyboard_leds()
-#ifndef PROTOCOL_VUSB
- /* these aren't set on the V-USB protocol, so we just ignore them for now */
, keyboard_protocol
, keyboard_idle
-#endif
#ifdef NKRO_ENABLE
, keymap_config.nkro
#endif