Factor basic note processing into respective processors

This commit is contained in:
Gabriel Young 2017-02-25 19:25:33 -08:00
parent 525be99ee9
commit 1000799d1e
9 changed files with 186 additions and 85 deletions

View file

@ -0,0 +1,11 @@
#ifndef PROCESS_AUDIO_H
#define PROCESS_AUDIO_H
bool process_audio(uint16_t keycode, keyrecord_t *record);
void process_audio_noteon(uint8_t note);
void process_audio_noteoff(uint8_t note);
void process_audio_stop_all_notes(void);
void audio_on_user(void);
#endif