Revert "core: LUFA: Fix checking num of endpoints for 32u2"
This reverts commit a567fec91c
.
This commit is contained in:
parent
965daf9dac
commit
c80e92db43
1 changed files with 15 additions and 14 deletions
|
@ -121,33 +121,34 @@ typedef struct
|
||||||
|
|
||||||
|
|
||||||
// Endopoint number and size
|
// Endopoint number and size
|
||||||
#define CUR_EPNUM 1
|
#define KEYBOARD_IN_EPNUM 1
|
||||||
#define KEYBOARD_IN_EPNUM CUR_EPNUM
|
|
||||||
|
|
||||||
#ifdef MOUSE_ENABLE
|
#ifdef MOUSE_ENABLE
|
||||||
# define CUR_EPNUM (CUR_EPNUM + 1)
|
# define MOUSE_IN_EPNUM (KEYBOARD_IN_EPNUM + 1)
|
||||||
# define MOUSE_IN_EPNUM CUR_EPNUM
|
#else
|
||||||
|
# define MOUSE_IN_EPNUM KEYBOARD_IN_EPNUM
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef EXTRAKEY_ENABLE
|
#ifdef EXTRAKEY_ENABLE
|
||||||
# define CUR_EPNUM (CUR_EPNUM + 1)
|
# define EXTRAKEY_IN_EPNUM (MOUSE_IN_EPNUM + 1)
|
||||||
# define EXTRAKEY_IN_EPNUM CUR_EPNUM
|
#else
|
||||||
|
# define EXTRAKEY_IN_EPNUM MOUSE_IN_EPNUM
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONSOLE_ENABLE
|
#ifdef CONSOLE_ENABLE
|
||||||
# define CUR_EPNUM (CUR_EPNUM + 1)
|
# define CONSOLE_IN_EPNUM (EXTRAKEY_IN_EPNUM + 1)
|
||||||
# define CONSOLE_IN_EPNUM CUR_EPNUM
|
# define CONSOLE_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 1)
|
||||||
# define CONSOLE_OUT_EPNUM CUR_EPNUM
|
//# define CONSOLE_OUT_EPNUM (EXTRAKEY_IN_EPNUM + 2)
|
||||||
|
#else
|
||||||
|
# define CONSOLE_OUT_EPNUM EXTRAKEY_IN_EPNUM
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef NKRO_ENABLE
|
#ifdef NKRO_ENABLE
|
||||||
# define CUR_EPNUM (CUR_EPNUM + 1)
|
# define NKRO_IN_EPNUM (CONSOLE_OUT_EPNUM + 1)
|
||||||
# define NKRO_IN_EPNUM CUR_EPNUM
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Check number of endpoints. ATmega32u2 has only four except for control endpoint. */
|
#if defined(__AVR_ATmega32U2__) && NKRO_IN_EPNUM > 4
|
||||||
#if defined(__AVR_ATmega32U2__) && CUR_EPNUM > 4
|
# error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO)"
|
||||||
# error "Endpoints are not available enough to support all functions. Disable some of build options in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO)"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Reference in a new issue