]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/audio.h
Merge pull request #262 from IBNobody/master
[qmk_firmware.git] / quantum / audio.h
1 #include <stdint.h>
2 #include <stdbool.h>
3 #include <avr/io.h>
4 #include <util/delay.h>
5 #include "musical_notes.h"
6 #include "song_list.h"
7
8 #ifndef AUDIO_H
9 #define AUDIO_H
10
11 typedef union {
12     uint8_t raw;
13     struct {
14         bool    enable :1;
15         uint8_t level  :7;
16     };
17 } audio_config_t;
18
19 void audio_toggle(void);
20 void audio_on(void);
21 void audio_off(void);
22
23 void play_sample(uint8_t * s, uint16_t l, bool r);
24 void play_note(double freq, int vol);
25 void stop_note(double freq);
26 void stop_all_notes(void);
27 void init_notes(void);
28 void play_notes(float (*np)[][2], uint8_t n_count, bool n_repeat, float n_rest);
29
30 void set_timbre(float timbre);
31 void set_tempo(float tempo);
32 void increase_tempo(uint8_t tempo_change);
33 void decrease_tempo(uint8_t tempo_change);
34
35 #define SCALE (int []){ 0 + (12*0), 2 + (12*0), 4 + (12*0), 5 + (12*0), 7 + (12*0), 9 + (12*0), 11 + (12*0), \
36                                                 0 + (12*1), 2 + (12*1), 4 + (12*1), 5 + (12*1), 7 + (12*1), 9 + (12*1), 11 + (12*1), \
37                                                 0 + (12*2), 2 + (12*2), 4 + (12*2), 5 + (12*2), 7 + (12*2), 9 + (12*2), 11 + (12*2), \
38                                                 0 + (12*3), 2 + (12*3), 4 + (12*3), 5 + (12*3), 7 + (12*3), 9 + (12*3), 11 + (12*3), \
39                                                 0 + (12*4), 2 + (12*4), 4 + (12*4), 5 + (12*4), 7 + (12*4), 9 + (12*4), 11 + (12*4), }
40
41 // These macros are used to allow play_notes to play an array of indeterminate
42 // length. This works around the limitation of C's sizeof operation on pointers.
43 // The global float array for the song must be used here.
44 #define NOTE_ARRAY_SIZE(x) ((int)(sizeof(x) / (sizeof(x[0]))))
45 #define PLAY_NOTE_ARRAY(note_array, note_repeat, note_rest_style) play_notes(&note_array, NOTE_ARRAY_SIZE((note_array)), (note_repeat), (note_rest_style));
46
47 void play_goodbye_tone(void);
48 void play_startup_tone(void);
49
50 #endif