diff options
| author | Ryan <fauxpark@gmail.com> | 2023-07-16 23:42:56 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-16 23:42:56 +1000 |
| commit | da2d2f947d5c30aebea17f414fb22ad50fe5410b (patch) | |
| tree | fdf2ed307ddb8f32ecb9ef7444ecfdf7ff7b4904 /quantum/process_keycode/process_audio.c | |
| parent | b9e5895184c6d36b46ba723d6d71e27249e70c20 (diff) | |
quantum: remove direct `quantum.h` includes (#21507)
Diffstat (limited to 'quantum/process_keycode/process_audio.c')
| -rw-r--r-- | quantum/process_keycode/process_audio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/process_keycode/process_audio.c b/quantum/process_keycode/process_audio.c index c189dd02b7..ef2f52c9f1 100644 --- a/quantum/process_keycode/process_audio.c +++ b/quantum/process_keycode/process_audio.c | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | #include "audio.h" | 1 | #include "audio.h" |
| 2 | #include "process_audio.h" | 2 | #include "process_audio.h" |
| 3 | #include <math.h> | ||
| 3 | 4 | ||
| 4 | #ifndef VOICE_CHANGE_SONG | 5 | #ifndef VOICE_CHANGE_SONG |
| 5 | # define VOICE_CHANGE_SONG SONG(VOICE_CHANGE_SOUND) | 6 | # define VOICE_CHANGE_SONG SONG(VOICE_CHANGE_SOUND) |
| @@ -61,6 +62,3 @@ void process_audio_noteoff(uint8_t note) { | |||
| 61 | void process_audio_all_notes_off(void) { | 62 | void process_audio_all_notes_off(void) { |
| 62 | stop_all_notes(); | 63 | stop_all_notes(); |
| 63 | } | 64 | } |
| 64 | |||
| 65 | __attribute__((weak)) void audio_on_user(void) {} | ||
| 66 | __attribute__((weak)) void audio_off_user(void) {} | ||
