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 /quantum/audio/audio.c | |
parent | 684793360cdb08ac1e50a6d27e1796fadd527adb (diff) | |
download | firmware-3f02637f4dd765803671c2611191beb096d60b36.tar.gz firmware-3f02637f4dd765803671c2611191beb096d60b36.tar.bz2 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 'quantum/audio/audio.c')
-rw-r--r-- | quantum/audio/audio.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/audio/audio.c b/quantum/audio/audio.c index 3a7f0f556..27b64f8c9 100644 --- a/quantum/audio/audio.c +++ b/quantum/audio/audio.c @@ -374,6 +374,10 @@ bool is_playing_notes(void) { return playing_notes; } +bool is_audio_on(void) { + return (audio_config.enable != 0); +} + void audio_toggle(void) { audio_config.enable ^= 1; eeconfig_update_audio(audio_config.raw); |