diff options
Diffstat (limited to 'protocol/pjrc/usb_keyboard.c')
| -rw-r--r-- | protocol/pjrc/usb_keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocol/pjrc/usb_keyboard.c b/protocol/pjrc/usb_keyboard.c index 758a4edc6..4b87b5d7b 100644 --- a/protocol/pjrc/usb_keyboard.c +++ b/protocol/pjrc/usb_keyboard.c | |||
| @@ -74,7 +74,7 @@ void usb_keyboard_print_report(report_keyboard_t *report) | |||
| 74 | { | 74 | { |
| 75 | if (!debug_keyboard) return; | 75 | if (!debug_keyboard) return; |
| 76 | print("keys: "); | 76 | print("keys: "); |
| 77 | for (int i = 0; i < REPORT_KEYS; i++) { phex(report->keys[i]); print(" "); } | 77 | for (int i = 0; i < KEYBOARD_REPORT_KEYS; i++) { phex(report->keys[i]); print(" "); } |
| 78 | print(" mods: "); phex(report->mods); print("\n"); | 78 | print(" mods: "); phex(report->mods); print("\n"); |
| 79 | } | 79 | } |
| 80 | 80 | ||
