diff options
author | Dasky <32983009+daskygit@users.noreply.github.com> | 2021-01-30 03:53:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 19:53:56 -0800 |
commit | d92ffd1157e3ecc4ae2dbf8548c45c8b0269f664 (patch) | |
tree | 9a1a1f9d06fe6b9b41e982d37895e19749fe53ec /common_features.mk | |
parent | 3780ab3fcd4888cba4852158e11c495fc9809306 (diff) | |
download | qmk_firmware-d92ffd1157e3ecc4ae2dbf8548c45c8b0269f664.tar.gz qmk_firmware-d92ffd1157e3ecc4ae2dbf8548c45c8b0269f664.zip |
Adds AT90USB162 support (#11570)
* at90usb162 support
* fix missing bracket
* Apply suggestions from code review
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index fa92a8482..6ed7e73b6 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -222,7 +222,7 @@ ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes) | |||
222 | $(error "$(RGB_MATRIX_DRIVER)" is not a valid matrix type) | 222 | $(error "$(RGB_MATRIX_DRIVER)" is not a valid matrix type) |
223 | endif | 223 | endif |
224 | OPT_DEFS += -DRGB_MATRIX_ENABLE | 224 | OPT_DEFS += -DRGB_MATRIX_ENABLE |
225 | ifneq (,$(filter $(MCU), atmega16u2 atmega32u2)) | 225 | ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 at90usb162)) |
226 | # ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines | 226 | # ATmegaxxU2 does not have hardware MUL instruction - lib8tion must be told to use software multiplication routines |
227 | OPT_DEFS += -DLIB8_ATTINY | 227 | OPT_DEFS += -DLIB8_ATTINY |
228 | endif | 228 | endif |