Skip to content

Instantly share code, notes, and snippets.

@wesen
Created September 8, 2011 06:29
Show Gist options
  • Save wesen/1202774 to your computer and use it in GitHub Desktop.
Save wesen/1202774 to your computer and use it in GitHub Desktop.
/**
* Start the bootloader by letting the watchdog run out. Safer than
* jumping directly into the bootloader.
**/
void start_bootloader(void) {
cli();
eeprom_write_word(START_MAIN_APP_ADDR, 0);
wdt_enable(WDTO_30MS);
while(1) {};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment