diff options
| author | Ryan <fauxpark@gmail.com> | 2023-10-27 11:21:13 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-27 12:21:13 +1100 |
| commit | db4e3bb232af27ef79ad0f5a4b17c828f283334a (patch) | |
| tree | a5a8851899cd08cff54e459420a9154f114f0daf /quantum/command.c | |
| parent | c5716f84ada7f142c99cb89f685b06a0c9d8601b (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.c | 5 |
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) { | |||
| 222 | "\n\t- Status -\n" | 222 | "\n\t- Status -\n" |
| 223 | 223 | ||
| 224 | "host_keyboard_leds(): %02X\n" | 224 | "host_keyboard_leds(): %02X\n" |
| 225 | #ifndef PROTOCOL_VUSB | ||
| 226 | "keyboard_protocol: %02X\n" | 225 | "keyboard_protocol: %02X\n" |
| 227 | "keyboard_idle: %02X\n" | 226 | "keyboard_idle: %02X\n" |
| 228 | #endif | ||
| 229 | #ifdef NKRO_ENABLE | 227 | #ifdef NKRO_ENABLE |
| 230 | "keymap_config.nkro: %02X\n" | 228 | "keymap_config.nkro: %02X\n" |
| 231 | #endif | 229 | #endif |
| 232 | "timer_read32(): %08lX\n" | 230 | "timer_read32(): %08lX\n" |
| 233 | 231 | ||
| 234 | , host_keyboard_leds() | 232 | , host_keyboard_leds() |
| 235 | #ifndef PROTOCOL_VUSB | ||
| 236 | /* these aren't set on the V-USB protocol, so we just ignore them for now */ | ||
| 237 | , keyboard_protocol | 233 | , keyboard_protocol |
| 238 | , keyboard_idle | 234 | , keyboard_idle |
| 239 | #endif | ||
| 240 | #ifdef NKRO_ENABLE | 235 | #ifdef NKRO_ENABLE |
| 241 | , keymap_config.nkro | 236 | , keymap_config.nkro |
| 242 | #endif | 237 | #endif |
