From ae21a90455e97ddfe58693e5fc290aa193271856 Mon Sep 17 00:00:00 2001 From: Jacob Alexander Date: Thu, 2 Oct 2014 19:29:56 -0700 Subject: [PATCH 1/1] Fixing USB NKRO key buffer bug - Missing a byte in the array --- Output/pjrcUSB/output_com.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Output/pjrcUSB/output_com.h b/Output/pjrcUSB/output_com.h index 5d7a1d4..a1658f7 100644 --- a/Output/pjrcUSB/output_com.h +++ b/Output/pjrcUSB/output_com.h @@ -36,7 +36,7 @@ // Max size of key buffer needed for NKRO // Boot mode uses only the first 6 bytes -#define USB_NKRO_BITFIELD_SIZE_KEYS 26 +#define USB_NKRO_BITFIELD_SIZE_KEYS 27 #define USB_BOOT_MAX_KEYS 6 -- 2.39.2