lufa: Fix condition for atmega32u2
the condition didn't work when variable MCU includes comment like:
MCU ?= atmega32u2 # TMK converter
https://github.com/tmk/tmk_keyboard/issues/753
This affects RemoteWakeup on atmega32u2:
https://github.com/tmk/tmk_keyboard/issues/361
This commit is contained in:
parent
1820eff74f
commit
b3d2f64bb3
1 changed files with 1 additions and 1 deletions
|
|
@ -51,7 +51,7 @@ TMK_LUFA_OPTS += -DUSE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_E
|
|||
TMK_LUFA_OPTS += -DFIXED_CONTROL_ENDPOINT_SIZE=8
|
||||
TMK_LUFA_OPTS += -DFIXED_NUM_CONFIGURATIONS=1
|
||||
# Remote wakeup fix for ATmega32U2 https://github.com/tmk/tmk_keyboard/issues/361
|
||||
ifeq ($(MCU),atmega32u2)
|
||||
ifeq (atmega32u2,$(strip $(MCU)))
|
||||
TMK_LUFA_OPTS += -DNO_LIMITED_CONTROLLER_CONNECT
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue