process_audio.h 361 B

123456789101112131415
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. #include "action.h"
  5. float compute_freq_for_midi_note(uint8_t note);
  6. bool process_audio(uint16_t keycode, keyrecord_t *record);
  7. void process_audio_noteon(uint8_t note);
  8. void process_audio_noteoff(uint8_t note);
  9. void process_audio_all_notes_off(void);
  10. void audio_on_user(void);
  11. void audio_off_user(void);