CTRL keyboard bootloader_jump support
Adds support for CTRL keyboards to enter bootloader via bootloader_jump()
This commit is contained in:
parent
20a10bd084
commit
daf0cc60bf
4 changed files with 38 additions and 15 deletions
|
@ -51,6 +51,9 @@ HEAP_SIZE = DEFINED(HEAP_SIZE) ? HEAP_SIZE : DEFINED(__heap_size__) ? __heap_siz
|
|||
_srom = ORIGIN(rom);
|
||||
_lrom = LENGTH(rom);
|
||||
_erom = ORIGIN(rom) + LENGTH(rom);
|
||||
_sram = ORIGIN(ram);
|
||||
_lram = LENGTH(ram);
|
||||
_eram = ORIGIN(ram) + LENGTH(ram);
|
||||
|
||||
/* Section Definitions */
|
||||
SECTIONS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue