diff options
Diffstat (limited to 'quantum/audio/audio.h')
| -rw-r--r-- | quantum/audio/audio.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/quantum/audio/audio.h b/quantum/audio/audio.h index 89769507e..3d706587a 100644 --- a/quantum/audio/audio.h +++ b/quantum/audio/audio.h | |||
| @@ -56,7 +56,7 @@ void increase_polyphony_rate(float change); | |||
| 56 | void decrease_polyphony_rate(float change); | 56 | void decrease_polyphony_rate(float change); |
| 57 | 57 | ||
| 58 | void set_timbre(float timbre); | 58 | void set_timbre(float timbre); |
| 59 | void set_tempo(float tempo); | 59 | void set_tempo(uint8_t tempo); |
| 60 | 60 | ||
| 61 | void increase_tempo(uint8_t tempo_change); | 61 | void increase_tempo(uint8_t tempo_change); |
| 62 | void decrease_tempo(uint8_t tempo_change); | 62 | void decrease_tempo(uint8_t tempo_change); |
| @@ -83,7 +83,11 @@ void play_notes(float (*np)[][2], uint16_t n_count, bool n_repeat, float n_rest) | |||
| 83 | #define NOTE_ARRAY_SIZE(x) ((int16_t)(sizeof(x) / (sizeof(x[0])))) | 83 | #define NOTE_ARRAY_SIZE(x) ((int16_t)(sizeof(x) / (sizeof(x[0])))) |
| 84 | #define PLAY_NOTE_ARRAY(note_array, note_repeat, note_rest_style) play_notes(¬e_array, NOTE_ARRAY_SIZE((note_array)), (note_repeat), (note_rest_style)); | 84 | #define PLAY_NOTE_ARRAY(note_array, note_repeat, note_rest_style) play_notes(¬e_array, NOTE_ARRAY_SIZE((note_array)), (note_repeat), (note_rest_style)); |
| 85 | 85 | ||
| 86 | |||
| 87 | bool is_playing_notes(void); | ||
| 86 | void play_goodbye_tone(void); | 88 | void play_goodbye_tone(void); |
| 87 | void play_startup_tone(void); | 89 | void play_startup_tone(void); |
| 88 | 90 | ||
| 91 | |||
| 92 | |||
| 89 | #endif \ No newline at end of file | 93 | #endif \ No newline at end of file |
