diff options
author | Michael Stapelberg <stapelberg@users.noreply.github.com> | 2021-06-16 06:53:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-15 21:53:27 -0700 |
commit | e2c58934052e2ca93a92cd97ef8b9c0425fa3cf6 (patch) | |
tree | 1f96e1c955dbe7975e2d2c50815dc1a009bf4fca /tmk_core/common/chibios | |
parent | d37900b906227a312dd9fa7990567f4f3f203230 (diff) | |
download | qmk_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/chibios')
-rw-r--r-- | tmk_core/common/chibios/bootloader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/chibios/bootloader.c b/tmk_core/common/chibios/bootloader.c index 11f7abf432..76d52ea608 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) { } } -#elif defined(KL2x) || defined(K20x) || defined(MK66F18) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS +#elif defined(KL2x) || defined(K20x) || defined(MK66F18) || defined(MIMXRT1062) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS /* Kinetis */ # if defined(BOOTLOADER_KIIBOHD) |