diff options
author | Purdea Andrei <andrei@purdea.ro> | 2021-04-19 19:33:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-19 09:33:24 -0700 |
commit | dcb8407ed694505403df010852d497f0bb33c607 (patch) | |
tree | 25dd0ff3a67c1e2bc288a7cfae5801c5933c4360 | |
parent | 230f09ca17c62ff1b47350f0232db2c2de4f2765 (diff) | |
download | qmk_firmware-dcb8407ed694505403df010852d497f0bb33c607.tar.gz qmk_firmware-dcb8407ed694505403df010852d497f0bb33c607.zip |
Apply the "NO_LIMITED_CONTROLLER_CONNECT" fix to atmega16u2 (#12482)
Co-authored-by: Ryan <fauxpark@gmail.com>
-rw-r--r-- | tmk_core/protocol/lufa.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/protocol/lufa.mk b/tmk_core/protocol/lufa.mk index 9d9fb728b1..514d5fac41 100644 --- a/tmk_core/protocol/lufa.mk +++ b/tmk_core/protocol/lufa.mk @@ -67,8 +67,8 @@ LUFA_OPTS += -DFIXED_CONTROL_ENDPOINT_SIZE=8 LUFA_OPTS += -DFIXED_CONTROL_ENDPOINT_SIZE=8 LUFA_OPTS += -DFIXED_NUM_CONFIGURATIONS=1 -# Remote wakeup fix for ATmega32U2 https://github.com/tmk/tmk_keyboard/issues/361 -ifeq ($(MCU),atmega32u2) +# Remote wakeup fix for ATmega16/32U2 https://github.com/tmk/tmk_keyboard/issues/361 +ifneq (,$(filter $(MCU), at90usb162 atmega16u2 atmega32u2)) LUFA_OPTS += -DNO_LIMITED_CONTROLLER_CONNECT endif |