1
0
Fork 0

Add compile error if too many endpoints are defined for the ATmega32U4.

This commit is contained in:
Joe Wasson 2017-08-19 20:35:41 -07:00 committed by Jack Humbert
parent fc70c9ac9e
commit bdc0880ca5
2 changed files with 3 additions and 2 deletions

View file

@ -238,7 +238,8 @@ typedef struct
# define CDC_OUT_EPNUM MIDI_STREAM_OUT_EPNUM
#endif
#if defined(__AVR_ATmega32U2__) && CDC_OUT_EPNUM > 4
#if (defined(__AVR_ATmega32U2__) && CDC_OUT_EPNUM > 4) || \
(defined(__AVR_ATmega32U4__) && CDC_OUT_EPNUM > 6)
# error "Endpoints are not available enough to support all functions. Remove some in Makefile.(MOUSEKEY, EXTRAKEY, CONSOLE, NKRO, MIDI, SERIAL)"
#endif