-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
Description
I feel like I must be doing something wrong, but I can't get bootloader_jump
to work. Is there anything else I need to do besides changing BOOTLOADER_SIZE
in config.h
and using the following code in the keymap?
if (id == TEENSY_KEY) {
clear_keyboard();
print("\n\nJump to bootloader... ");
_delay_ms(250);
bootloader_jump(); // should not return
print("not supported.\n");
}
Source here, if that helps at all: https://github.com/kejadlen/tmk_keyboard/tree/master/keyboard/planckeus
I also inadvertently ran the bootloader jump with the wrong bootloader size before realizing that needed to be changed - would that have any effect on future uses of bootloader_jump
?