diff options
| author | tmk <nobody@nowhere> | 2013-03-11 15:10:56 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2013-03-11 15:10:56 +0900 |
| commit | d055e0633e36e97802d60554f6002e47021ba5fd (patch) | |
| tree | d129174dd33232723fbd60795ccb5132701ad51f /common/bootmagic.c | |
| parent | 1d5bbb55f28eb2e9eff0543753b8cb85f3b94282 (diff) | |
| download | qmk_firmware-d055e0633e36e97802d60554f6002e47021ba5fd.tar.gz qmk_firmware-d055e0633e36e97802d60554f6002e47021ba5fd.zip | |
Fix debug parameter setting in eeconfig
Diffstat (limited to 'common/bootmagic.c')
| -rw-r--r-- | common/bootmagic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/bootmagic.c b/common/bootmagic.c index 46fbc180a..388099e2e 100644 --- a/common/bootmagic.c +++ b/common/bootmagic.c | |||
| @@ -10,12 +10,12 @@ | |||
| 10 | 10 | ||
| 11 | void bootmagic(void) | 11 | void bootmagic(void) |
| 12 | { | 12 | { |
| 13 | if (!BOOTMAGIC_IS_ENABLED()) { return; } | ||
| 14 | |||
| 13 | /* do scans in case of bounce */ | 15 | /* do scans in case of bounce */ |
| 14 | uint8_t scan = 100; | 16 | uint8_t scan = 100; |
| 15 | while (scan--) { matrix_scan(); _delay_ms(1); } | 17 | while (scan--) { matrix_scan(); _delay_ms(1); } |
| 16 | 18 | ||
| 17 | if (!BOOTMAGIC_IS_ENABLE()) { return; } | ||
| 18 | |||
| 19 | if (bootmagic_scan_keycode(BOOTMAGIC_BOOTLOADER_KEY)) { | 19 | if (bootmagic_scan_keycode(BOOTMAGIC_BOOTLOADER_KEY)) { |
| 20 | bootloader_jump(); | 20 | bootloader_jump(); |
| 21 | } | 21 | } |
