Skip to content

Commit

Permalink
Merge pull request #5 from IBNobody/make_nkro_report_32_bytes
Browse files Browse the repository at this point in the history
Change NKRO size fron 16 bytes to 32 bytes.
  • Loading branch information
IBNobody authored Sep 6, 2016
2 parents ff53e16 + 16e7062 commit 91e0f62
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tmk_core/protocol/lufa/descriptor.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
* Copyright 2012,2013 Jun Wako <[email protected]>
* This file is based on:
* LUFA-120219/Demos/Device/Lowlevel/KeyboardMouse
Expand Down Expand Up @@ -129,13 +129,13 @@ typedef struct
# define MOUSE_INTERFACE (KEYBOARD_INTERFACE + 1)
#else
# define MOUSE_INTERFACE KEYBOARD_INTERFACE
#endif
#endif

#ifdef EXTRAKEY_ENABLE
# define EXTRAKEY_INTERFACE (MOUSE_INTERFACE + 1)
#else
# define EXTRAKEY_INTERFACE MOUSE_INTERFACE
#endif
#endif

#ifdef CONSOLE_ENABLE
# define CONSOLE_INTERFACE (EXTRAKEY_INTERFACE + 1)
Expand Down Expand Up @@ -171,15 +171,15 @@ typedef struct
#define KEYBOARD_IN_EPNUM 1

#ifdef MOUSE_ENABLE
# define MOUSE_IN_EPNUM (KEYBOARD_IN_EPNUM + 1)
# define MOUSE_IN_EPNUM (KEYBOARD_IN_EPNUM + 1)
#else
# define MOUSE_IN_EPNUM KEYBOARD_IN_EPNUM
#endif

#ifdef EXTRAKEY_ENABLE
# define EXTRAKEY_IN_EPNUM (MOUSE_IN_EPNUM + 1)
#else
# define EXTRAKEY_IN_EPNUM MOUSE_IN_EPNUM
# define EXTRAKEY_IN_EPNUM MOUSE_IN_EPNUM
#endif

#ifdef CONSOLE_ENABLE
Expand Down Expand Up @@ -226,7 +226,7 @@ typedef struct
#define MOUSE_EPSIZE 8
#define EXTRAKEY_EPSIZE 8
#define CONSOLE_EPSIZE 32
#define NKRO_EPSIZE 16
#define NKRO_EPSIZE 32
#define MIDI_STREAM_EPSIZE 64
#define CDC_NOTIFICATION_EPSIZE 8
#define CDC_EPSIZE 16
Expand Down

0 comments on commit 91e0f62

Please sign in to comment.