diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-05-09 13:17:15 -0400 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-05-09 13:17:15 -0400 |
commit | 3f02637f4dd765803671c2611191beb096d60b36 (patch) | |
tree | c11714b62494097226253d3951de2472e7954129 /tmk_core/common/command.c | |
parent | 684793360cdb08ac1e50a6d27e1796fadd527adb (diff) | |
download | qmk_firmware-3f02637f4dd765803671c2611191beb096d60b36.tar.gz qmk_firmware-3f02637f4dd765803671c2611191beb096d60b36.zip |
Backlight Breathing for Planck and Atomic
* Updated personal layouts
* tweaked personal
* Nightly - Audio Cleanup
Refactored the LUTs. Abstracted some of the registers out of audio to
use more functional names. Split audio into audio and audio_pwm. WIP
* nightly - collapsed code
* Added check for note playing to LEDs
* Usability tweaks
* TWEAE
* nightly
added extra kcs to keymap common
* turned on Plank audio
* Added backlight breathing to atomic
* reverted accidental merge
* adds backlight pulse to planck
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r-- | tmk_core/common/command.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index f06abaf7f..9edcc42a0 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c | |||
@@ -357,9 +357,11 @@ static bool command_common(uint8_t code) | |||
357 | clear_keyboard(); // clear to prevent stuck keys | 357 | clear_keyboard(); // clear to prevent stuck keys |
358 | print("\n\nJumping to bootloader... "); | 358 | print("\n\nJumping to bootloader... "); |
359 | #ifdef AUDIO_ENABLE | 359 | #ifdef AUDIO_ENABLE |
360 | stop_all_notes(); | ||
360 | play_goodbye_tone(); | 361 | play_goodbye_tone(); |
362 | #else | ||
363 | _delay_ms(1000); | ||
361 | #endif | 364 | #endif |
362 | _delay_ms(1000); | ||
363 | bootloader_jump(); // not return | 365 | bootloader_jump(); // not return |
364 | break; | 366 | break; |
365 | 367 | ||