aboutsummaryrefslogtreecommitdiff
path: root/tmk_core
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2020-08-25 18:58:00 +1000
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2020-08-29 14:30:02 -0700
commitb89b2030af655132e2708cbdffd7fb1b8e1aaeb4 (patch)
treef6d9d65da2b9f93ce0ad2f6a9e00293a1c6f4aa5 /tmk_core
parentfa6cf8572736f16d2fe076c21546d08f258e145f (diff)
downloadqmk_firmware-b89b2030af655132e2708cbdffd7fb1b8e1aaeb4.tar.gz
qmk_firmware-b89b2030af655132e2708cbdffd7fb1b8e1aaeb4.zip
Kiibohd bootloader, take 2 (#10129)
Diffstat (limited to 'tmk_core')
-rw-r--r--tmk_core/chibios.mk2
-rw-r--r--tmk_core/common/chibios/bootloader.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk
index a218488a1..2bd53f0dc 100644
--- a/tmk_core/chibios.mk
+++ b/tmk_core/chibios.mk
@@ -386,7 +386,7 @@ bin: $(BUILD_DIR)/$(TARGET).bin sizeafter
386flash: $(BUILD_DIR)/$(TARGET).bin cpfirmware sizeafter 386flash: $(BUILD_DIR)/$(TARGET).bin cpfirmware sizeafter
387ifneq ($(strip $(PROGRAM_CMD)),) 387ifneq ($(strip $(PROGRAM_CMD)),)
388 $(PROGRAM_CMD) 388 $(PROGRAM_CMD)
389else ifeq ($(strip $(BOOTLOADER)),dfu) 389else ifeq ($(strip $(BOOTLOADER)),kiibohd)
390 $(call EXEC_DFU_UTIL) 390 $(call EXEC_DFU_UTIL)
391else ifeq ($(strip $(MCU_FAMILY)),KINETIS) 391else ifeq ($(strip $(MCU_FAMILY)),KINETIS)
392 $(call EXEC_TEENSY) 392 $(call EXEC_TEENSY)
diff --git a/tmk_core/common/chibios/bootloader.c b/tmk_core/common/chibios/bootloader.c
index 743448ee1..7b2cf5c43 100644
--- a/tmk_core/common/chibios/bootloader.c
+++ b/tmk_core/common/chibios/bootloader.c
@@ -82,7 +82,7 @@ void enter_bootloader_mode_if_requested(void) {
82#elif defined(KL2x) || defined(K20x) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS 82#elif defined(KL2x) || defined(K20x) // STM32_BOOTLOADER_DUAL_BANK // STM32_BOOTLOADER_ADDRESS
83/* Kinetis */ 83/* Kinetis */
84 84
85# if defined(KIIBOHD_BOOTLOADER) 85# if defined(BOOTLOADER_KIIBOHD)
86/* Kiibohd Bootloader (MCHCK and Infinity KB) */ 86/* Kiibohd Bootloader (MCHCK and Infinity KB) */
87# define SCB_AIRCR_VECTKEY_WRITEMAGIC 0x05FA0000 87# define SCB_AIRCR_VECTKEY_WRITEMAGIC 0x05FA0000
88const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff"; 88const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff";
@@ -92,14 +92,14 @@ void bootloader_jump(void) {
92 SCB->AIRCR = SCB_AIRCR_VECTKEY_WRITEMAGIC | SCB_AIRCR_SYSRESETREQ_Msk; 92 SCB->AIRCR = SCB_AIRCR_VECTKEY_WRITEMAGIC | SCB_AIRCR_SYSRESETREQ_Msk;
93} 93}
94 94
95# else /* defined(KIIBOHD_BOOTLOADER) */ 95# else /* defined(BOOTLOADER_KIIBOHD) */
96/* Default for Kinetis - expecting an ARM Teensy */ 96/* Default for Kinetis - expecting an ARM Teensy */
97# include "wait.h" 97# include "wait.h"
98void bootloader_jump(void) { 98void bootloader_jump(void) {
99 wait_ms(100); 99 wait_ms(100);
100 __BKPT(0); 100 __BKPT(0);
101} 101}
102# endif /* defined(KIIBOHD_BOOTLOADER) */ 102# endif /* defined(BOOTLOADER_KIIBOHD) */
103 103
104#else /* neither STM32 nor KINETIS */ 104#else /* neither STM32 nor KINETIS */
105__attribute__((weak)) void bootloader_jump(void) {} 105__attribute__((weak)) void bootloader_jump(void) {}