aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common
diff options
context:
space:
mode:
authorMichael Stapelberg <stapelberg@users.noreply.github.com>2021-06-16 06:53:27 +0200
committerGitHub <noreply@github.com>2021-06-15 21:53:27 -0700
commite2c58934052e2ca93a92cd97ef8b9c0425fa3cf6 (patch)
tree1f96e1c955dbe7975e2d2c50815dc1a009bf4fca /tmk_core/common
parentd37900b906227a312dd9fa7990567f4f3f203230 (diff)
downloadqmk_firmware-e2c58934052e2ca93a92cd97ef8b9c0425fa3cf6.tar.gz
qmk_firmware-e2c58934052e2ca93a92cd97ef8b9c0425fa3cf6.zip
core: make RESET key work with Teensy 4.x (#13076)
related to https://github.com/kinx-project/kint/issues/5
Diffstat (limited to 'tmk_core/common')
-rw-r--r--tmk_core/common/chibios/bootloader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/chibios/bootloader.c b/tmk_core/common/chibios/bootloader.c
index 11f7abf43..76d52ea60 100644
--- a/tmk_core/common/chibios/bootloader.c
+++ b/tmk_core/common/chibios/bootloader.c
@@ -95,7 +95,7 @@ void enter_bootloader_mode_if_requested(void) {
95 } 95 }
96} 96}
97 97
98#elif defined(KL2x) || defined(K20x) || defined(MK66F18) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS 98#elif defined(KL2x) || defined(K20x) || defined(MK66F18) || defined(MIMXRT1062) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS
99/* Kinetis */ 99/* Kinetis */
100 100
101# if defined(BOOTLOADER_KIIBOHD) 101# if defined(BOOTLOADER_KIIBOHD)