From 133f6823cf7c3fb13e7db7c119326a24e3a6e494 Mon Sep 17 00:00:00 2001 From: Stefan Dorn Date: Mon, 4 Jan 2016 15:55:00 +0000 Subject: [PATCH] fix f14 and up --- src/lib-other/pjrc/usb_keyboard/usb_keyboard.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib-other/pjrc/usb_keyboard/usb_keyboard.c b/src/lib-other/pjrc/usb_keyboard/usb_keyboard.c index 43bed83..3109fa3 100644 --- a/src/lib-other/pjrc/usb_keyboard/usb_keyboard.c +++ b/src/lib-other/pjrc/usb_keyboard/usb_keyboard.c @@ -140,10 +140,10 @@ static const uint8_t PROGMEM keyboard_hid_report_desc[] = { 0x95, 0x06, // Report Count (6), 0x75, 0x08, // Report Size (8), 0x15, 0x00, // Logical Minimum (0), - 0x25, 0x68, // Logical Maximum(104), + 0x25, 0xFF, // Logical Maximum(104), 0x05, 0x07, // Usage Page (Key Codes), 0x19, 0x00, // Usage Minimum (0), - 0x29, 0x68, // Usage Maximum (104), + 0x29, 0xFF, // Usage Maximum (104), 0x81, 0x00, // Input (Data, Array), 0xc0 // End Collection };