aboutsummaryrefslogtreecommitdiff
path: root/bootloader.mk
diff options
context:
space:
mode:
authorDasky <32983009+daskygit@users.noreply.github.com>2021-01-30 03:53:56 +0000
committerGitHub <noreply@github.com>2021-01-29 19:53:56 -0800
commitd92ffd1157e3ecc4ae2dbf8548c45c8b0269f664 (patch)
tree9a1a1f9d06fe6b9b41e982d37895e19749fe53ec /bootloader.mk
parent3780ab3fcd4888cba4852158e11c495fc9809306 (diff)
downloadqmk_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 'bootloader.mk')
-rw-r--r--bootloader.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootloader.mk b/bootloader.mk
index 8b4bc7a0f..fd76446e9 100644
--- a/bootloader.mk
+++ b/bootloader.mk
@@ -40,7 +40,7 @@
40ifeq ($(strip $(BOOTLOADER)), atmel-dfu) 40ifeq ($(strip $(BOOTLOADER)), atmel-dfu)
41 OPT_DEFS += -DBOOTLOADER_ATMEL_DFU 41 OPT_DEFS += -DBOOTLOADER_ATMEL_DFU
42 OPT_DEFS += -DBOOTLOADER_DFU 42 OPT_DEFS += -DBOOTLOADER_DFU
43 ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 atmega16u4 atmega32u4 at90usb646 at90usb647)) 43 ifneq (,$(filter $(MCU), at90usb162 atmega16u2 atmega32u2 atmega16u4 atmega32u4 at90usb646 at90usb647))
44 BOOTLOADER_SIZE = 4096 44 BOOTLOADER_SIZE = 4096
45 endif 45 endif
46 ifneq (,$(filter $(MCU), at90usb1286 at90usb1287)) 46 ifneq (,$(filter $(MCU), at90usb1286 at90usb1287))
@@ -50,7 +50,7 @@ endif
50ifeq ($(strip $(BOOTLOADER)), lufa-dfu) 50ifeq ($(strip $(BOOTLOADER)), lufa-dfu)
51 OPT_DEFS += -DBOOTLOADER_LUFA_DFU 51 OPT_DEFS += -DBOOTLOADER_LUFA_DFU
52 OPT_DEFS += -DBOOTLOADER_DFU 52 OPT_DEFS += -DBOOTLOADER_DFU
53 ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 atmega16u4 atmega32u4 at90usb646 at90usb647)) 53 ifneq (,$(filter $(MCU), at90usb162 atmega16u2 atmega32u2 atmega16u4 atmega32u4 at90usb646 at90usb647))
54 BOOTLOADER_SIZE = 4096 54 BOOTLOADER_SIZE = 4096
55 endif 55 endif
56 ifneq (,$(filter $(MCU), at90usb1286 at90usb1287)) 56 ifneq (,$(filter $(MCU), at90usb1286 at90usb1287))
@@ -60,7 +60,7 @@ endif
60ifeq ($(strip $(BOOTLOADER)), qmk-dfu) 60ifeq ($(strip $(BOOTLOADER)), qmk-dfu)
61 OPT_DEFS += -DBOOTLOADER_QMK_DFU 61 OPT_DEFS += -DBOOTLOADER_QMK_DFU
62 OPT_DEFS += -DBOOTLOADER_DFU 62 OPT_DEFS += -DBOOTLOADER_DFU
63 ifneq (,$(filter $(MCU), atmega16u2 atmega32u2 atmega16u4 atmega32u4 at90usb646 at90usb647)) 63 ifneq (,$(filter $(MCU), at90usb162 atmega16u2 atmega32u2 atmega16u4 atmega32u4 at90usb646 at90usb647))
64 BOOTLOADER_SIZE = 4096 64 BOOTLOADER_SIZE = 4096
65 endif 65 endif
66 ifneq (,$(filter $(MCU), at90usb1286 at90usb1287)) 66 ifneq (,$(filter $(MCU), at90usb1286 at90usb1287))