|
|
@ -44,7 +44,7 @@ void enter_bootloader_mode_if_requested(void) { |
|
|
|
#elif defined(KL2x) || defined(K20x) /* STM32_BOOTLOADER_ADDRESS */ |
|
|
|
#elif defined(KL2x) || defined(K20x) /* STM32_BOOTLOADER_ADDRESS */ |
|
|
|
/* Kinetis */ |
|
|
|
/* Kinetis */ |
|
|
|
|
|
|
|
|
|
|
|
# if defined(BOOTLOADER_KIIBOHD) |
|
|
|
# if defined(KIIBOHD_BOOTLOADER) |
|
|
|
/* Kiibohd Bootloader (MCHCK and Infinity KB) */ |
|
|
|
/* Kiibohd Bootloader (MCHCK and Infinity KB) */ |
|
|
|
# define SCB_AIRCR_VECTKEY_WRITEMAGIC 0x05FA0000 |
|
|
|
# define SCB_AIRCR_VECTKEY_WRITEMAGIC 0x05FA0000 |
|
|
|
const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff"; |
|
|
|
const uint8_t sys_reset_to_loader_magic[] = "\xff\x00\x7fRESET TO LOADER\x7f\x00\xff"; |
|
|
@ -54,14 +54,14 @@ void bootloader_jump(void) { |
|
|
|
SCB->AIRCR = SCB_AIRCR_VECTKEY_WRITEMAGIC | SCB_AIRCR_SYSRESETREQ_Msk; |
|
|
|
SCB->AIRCR = SCB_AIRCR_VECTKEY_WRITEMAGIC | SCB_AIRCR_SYSRESETREQ_Msk; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
# else /* defined(BOOTLOADER_KIIBOHD) */ |
|
|
|
# else /* defined(KIIBOHD_BOOTLOADER) */ |
|
|
|
/* Default for Kinetis - expecting an ARM Teensy */ |
|
|
|
/* Default for Kinetis - expecting an ARM Teensy */ |
|
|
|
# include "wait.h" |
|
|
|
# include "wait.h" |
|
|
|
void bootloader_jump(void) { |
|
|
|
void bootloader_jump(void) { |
|
|
|
wait_ms(100); |
|
|
|
wait_ms(100); |
|
|
|
__BKPT(0); |
|
|
|
__BKPT(0); |
|
|
|
} |
|
|
|
} |
|
|
|
# endif /* defined(BOOTLOADER_KIIBOHD) */ |
|
|
|
# endif /* defined(KIIBOHD_BOOTLOADER) */ |
|
|
|
|
|
|
|
|
|
|
|
#else /* neither STM32 nor KINETIS */ |
|
|
|
#else /* neither STM32 nor KINETIS */ |
|
|
|
__attribute__((weak)) void bootloader_jump(void) {} |
|
|
|
__attribute__((weak)) void bootloader_jump(void) {} |
|
|
|