1
0
Fork 0

Merge pull request #1112 from newsboytko/newsboytko/midi-keycodes

Flesh out MIDI support
This commit is contained in:
Jack Humbert 2017-03-28 09:26:54 -04:00 committed by GitHub
commit 7e37daa2ce
36 changed files with 1435 additions and 496 deletions

View file

@ -35,11 +35,16 @@ extern uint32_t default_layer_state;
#ifdef MIDI_ENABLE
#include <lufa.h>
#ifdef MIDI_ADVANCED
#include "process_midi.h"
#endif
#endif // MIDI_ENABLE
#ifdef AUDIO_ENABLE
#include "audio.h"
#include "process_audio.h"
#endif
#if defined(AUDIO_ENABLE) || (defined(MIDI_ENABLE) && defined(MIDI_BASIC))
#include "process_music.h"
#endif