diff options
author | IBNobody <IBNobody@users.noreply.github.com> | 2016-05-03 12:56:40 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-05-03 13:56:40 -0400 |
commit | 83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3 (patch) | |
tree | fd0c9714f93e1afec478ddc42a86a6823136ad5f /quantum/keymap_common.c | |
parent | 2c070163ffffffde546fb00acaa2fbb96b93da64 (diff) | |
download | qmk_firmware-83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3.tar.gz qmk_firmware-83e1cc241e3aabd69f6cdcd2581477d4b85bb8d3.zip |
Clarified audio.c (#302)
* 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
Diffstat (limited to 'quantum/keymap_common.c')
-rw-r--r-- | quantum/keymap_common.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/quantum/keymap_common.c b/quantum/keymap_common.c index 4b4bd6210..5e78d1157 100644 --- a/quantum/keymap_common.c +++ b/quantum/keymap_common.c | |||
@@ -24,10 +24,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
24 | #include "action_macro.h" | 24 | #include "action_macro.h" |
25 | #include "debug.h" | 25 | #include "debug.h" |
26 | #include "backlight.h" | 26 | #include "backlight.h" |
27 | #include "keymap_midi.h" | ||
28 | #include "bootloader.h" | 27 | #include "bootloader.h" |
29 | #include "eeconfig.h" | 28 | #include "eeconfig.h" |
30 | 29 | ||
30 | #ifdef MIDI_ENABLE | ||
31 | #include "keymap_midi.h" | ||
32 | #endif | ||
33 | |||
34 | |||
31 | extern keymap_config_t keymap_config; | 35 | extern keymap_config_t keymap_config; |
32 | 36 | ||
33 | #include <stdio.h> | 37 | #include <stdio.h> |