process_audio.h 315 B

12345678910111213
  1. #ifndef PROCESS_AUDIO_H
  2. #define PROCESS_AUDIO_H
  3. float compute_freq_for_midi_note(uint8_t note);
  4. bool process_audio(uint16_t keycode, keyrecord_t *record);
  5. void process_audio_noteon(uint8_t note);
  6. void process_audio_noteoff(uint8_t note);
  7. void process_audio_all_notes_off(void);
  8. void audio_on_user(void);
  9. #endif