diff options
| -rw-r--r-- | tmk_core/common/avr/bootloader.c | 8 | ||||
| -rw-r--r-- | tmk_core/common/command.c | 3 |
2 files changed, 4 insertions, 7 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 | */ |
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index fc5aad5c1..f3e1bf623 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c | |||
| @@ -384,9 +384,6 @@ static bool command_common(uint8_t code) | |||
| 384 | debug_mouse = true; | 384 | debug_mouse = true; |
| 385 | } else { | 385 | } else { |
| 386 | print("\ndebug: off\n"); | 386 | print("\ndebug: off\n"); |
| 387 | debug_matrix = false; | ||
| 388 | debug_keyboard = false; | ||
| 389 | debug_mouse = false; | ||
| 390 | } | 387 | } |
| 391 | break; | 388 | break; |
| 392 | 389 | ||
