aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/avr/bootloader.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/avr/bootloader.c')
-rw-r--r--tmk_core/common/avr/bootloader.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmk_core/common/avr/bootloader.c b/tmk_core/common/avr/bootloader.c
index fb9bf2d1c..ad547b985 100644
--- a/tmk_core/common/avr/bootloader.c
+++ b/tmk_core/common/avr/bootloader.c
@@ -38,7 +38,7 @@
38 * | | | | 38 * | | | |
39 * = = = = 39 * = = = =
40 * | | 32KB-4KB | | 128KB-8KB 40 * | | 32KB-4KB | | 128KB-8KB
41 * 0x6000 +---------------+ 0x1FC00 +---------------+ 41 * 0x7000 +---------------+ 0x1E000 +---------------+
42 * | Bootloader | 4KB | Bootloader | 8KB 42 * | Bootloader | 4KB | Bootloader | 8KB
43 * 0x7FFF +---------------+ 0x1FFFF +---------------+ 43 * 0x7FFF +---------------+ 0x1FFFF +---------------+
44 * 44 *
@@ -64,8 +64,8 @@
64#define BOOTLOADER_START (FLASH_SIZE - BOOTLOADER_SIZE) 64#define BOOTLOADER_START (FLASH_SIZE - BOOTLOADER_SIZE)
65 65
66 66
67/* 67/*
68 * Entering the Bootloader via Software 68 * Entering the Bootloader via Software
69 * http://www.fourwalledcubicle.com/files/LUFA/Doc/120730/html/_page__software_bootloader_start.html 69 * http://www.fourwalledcubicle.com/files/LUFA/Doc/120730/html/_page__software_bootloader_start.html
70 */ 70 */
71#define BOOTLOADER_RESET_KEY 0xB007B007 71#define BOOTLOADER_RESET_KEY 0xB007B007
@@ -137,7 +137,7 @@ void bootloader_jump_after_watchdog_reset(void)
137#if 0 137#if 0
138/* Jumping To The Bootloader 138/* Jumping To The Bootloader
139 * http://www.pjrc.com/teensy/jump_to_bootloader.html 139 * http://www.pjrc.com/teensy/jump_to_bootloader.html
140 * 140 *
141 * This method doen't work when using LUFA. idk why. 141 * This method doen't work when using LUFA. idk why.
142 * - needs to initialize more regisers or interrupt setting? 142 * - needs to initialize more regisers or interrupt setting?
143 */ 143 */