]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/audio/audio.h
Clueboard 60% support (#1746)
[qmk_firmware.git] / quantum / audio / audio.h
1 /* Copyright 2016 Jack Humbert
2  *
3  * This program is free software: you can redistribute it and/or modify
4  * it under the terms of the GNU General Public License as published by
5  * the Free Software Foundation, either version 2 of the License, or
6  * (at your option) any later version.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15  */
16 #ifndef AUDIO_H
17 #define AUDIO_H
18
19 #include <stdint.h>
20 #include <stdbool.h>
21 #if defined(__AVR__)
22   #include <avr/io.h>
23 #endif
24 #include "wait.h"
25 #include "musical_notes.h"
26 #include "song_list.h"
27 #include "voices.h"
28 #include "quantum.h"
29 #include <math.h>
30
31 // Largely untested PWM audio mode (doesn't sound as good)
32 // #define PWM_AUDIO
33
34 // #define VIBRATO_ENABLE
35
36 // Enable vibrato strength/amplitude - slows down ISR too much
37 // #define VIBRATO_STRENGTH_ENABLE
38
39 typedef union {
40     uint8_t raw;
41     struct {
42         bool    enable :1;
43         uint8_t level  :7;
44     };
45 } audio_config_t;
46
47 bool is_audio_on(void);
48 void audio_toggle(void);
49 void audio_on(void);
50 void audio_off(void);
51
52 // Vibrato rate functions
53
54 #ifdef VIBRATO_ENABLE
55
56 void set_vibrato_rate(float rate);
57 void increase_vibrato_rate(float change);
58 void decrease_vibrato_rate(float change);
59
60 #ifdef VIBRATO_STRENGTH_ENABLE
61
62 void set_vibrato_strength(float strength);
63 void increase_vibrato_strength(float change);
64 void decrease_vibrato_strength(float change);
65
66 #endif
67
68 #endif
69
70 // Polyphony functions
71
72 void set_polyphony_rate(float rate);
73 void enable_polyphony(void);
74 void disable_polyphony(void);
75 void increase_polyphony_rate(float change);
76 void decrease_polyphony_rate(float change);
77
78 void set_timbre(float timbre);
79 void set_tempo(uint8_t tempo);
80
81 void increase_tempo(uint8_t tempo_change);
82 void decrease_tempo(uint8_t tempo_change);
83
84 void audio_init(void);
85
86 #ifdef PWM_AUDIO
87 void play_sample(uint8_t * s, uint16_t l, bool r);
88 #endif
89 void play_note(float freq, int vol);
90 void stop_note(float freq);
91 void stop_all_notes(void);
92 void play_notes(float (*np)[][2], uint16_t n_count, bool n_repeat);
93
94 #define SCALE (int8_t []){ 0 + (12*0), 2 + (12*0), 4 + (12*0), 5 + (12*0), 7 + (12*0), 9 + (12*0), 11 + (12*0), \
95                            0 + (12*1), 2 + (12*1), 4 + (12*1), 5 + (12*1), 7 + (12*1), 9 + (12*1), 11 + (12*1), \
96                            0 + (12*2), 2 + (12*2), 4 + (12*2), 5 + (12*2), 7 + (12*2), 9 + (12*2), 11 + (12*2), \
97                            0 + (12*3), 2 + (12*3), 4 + (12*3), 5 + (12*3), 7 + (12*3), 9 + (12*3), 11 + (12*3), \
98                            0 + (12*4), 2 + (12*4), 4 + (12*4), 5 + (12*4), 7 + (12*4), 9 + (12*4), 11 + (12*4), }
99
100 // These macros are used to allow play_notes to play an array of indeterminate
101 // length. This works around the limitation of C's sizeof operation on pointers.
102 // The global float array for the song must be used here.
103 #define NOTE_ARRAY_SIZE(x) ((int16_t)(sizeof(x) / (sizeof(x[0]))))
104 #define PLAY_NOTE_ARRAY(note_array, note_repeat, deprecated_arg) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), (note_repeat)); \
105         _Pragma ("message \"'PLAY_NOTE_ARRAY' macro is deprecated\"")
106 #define PLAY_SONG(note_array) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), false)
107 #define PLAY_LOOP(note_array) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), true)
108
109 bool is_playing_notes(void);
110
111 #endif