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