added missing audio_off_user() callback (#15457)

Co-authored-by: Raoul Rubien <raoul.rubienr@gmail.com>
This commit is contained in:
Dipl.-Ing. Raoul Rubien, BSc 2021-12-12 01:58:25 +01:00 committed by GitHub
parent dd994e72ad
commit 415faebd65
Failed to generate hash of commit
3 changed files with 5 additions and 0 deletions

View file

@ -57,3 +57,4 @@ void process_audio_noteoff(uint8_t note) { stop_note(compute_freq_for_midi_note(
void process_audio_all_notes_off(void) { stop_all_notes(); }
__attribute__((weak)) void audio_on_user() {}
__attribute__((weak)) void audio_off_user() {}