From: yangdigi Date: Wed, 3 Jan 2018 03:06:08 +0000 (+0800) Subject: fix not correctly showing 32u2 warning message when Endpints are more than 4. X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=78f4f666c60f79e7e271fcf847d84f1075c0fa3c;p=max%2Ftmk_keyboard.git fix not correctly showing 32u2 warning message when Endpints are more than 4. --- diff --git a/tmk_core/protocol/lufa/descriptor.h b/tmk_core/protocol/lufa/descriptor.h index 119f4298..4af872b7 100644 --- a/tmk_core/protocol/lufa/descriptor.h +++ b/tmk_core/protocol/lufa/descriptor.h @@ -145,9 +145,10 @@ typedef struct #ifdef NKRO_ENABLE # define NKRO_IN_EPNUM (CONSOLE_OUT_EPNUM + 1) -# if defined(__AVR_ATmega32U2__) && NKRO_IN_EPNUM > 4 -# error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO)" -# endif +#endif + +#if defined(__AVR_ATmega32U2__) && NKRO_IN_EPNUM > 4 +# error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO)" #endif