You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
577 B
24 lines
577 B
9 years ago
|
#include "utils.h"
|
||
|
|
||
|
void reboot_bootloader() {
|
||
|
// Set the magic bits to get a Caterina-based device
|
||
|
// to reboot into the bootloader and stay there, rather
|
||
|
// than run move onward
|
||
|
//
|
||
|
// These values are the same as those defined in
|
||
|
// Caterina.c
|
||
|
|
||
|
uint16_t bootKey = 0x7777;
|
||
|
uint16_t *const bootKeyPtr = (uint16_t *)0x0800;
|
||
|
|
||
|
// Stash the magic key
|
||
|
*bootKeyPtr = bootKey;
|
||
|
|
||
|
// Set a watchdog timer
|
||
|
wdt_enable(WDTO_120MS);
|
||
|
|
||
|
while (1) {} // This infinite loop ensures nothing else
|
||
|
// happens before the watchdog reboots us
|
||
|
}
|
||
|
|