~ruther/qmk_firmware

ref: 12a9b2b9aeb59a16602374dab202df2bbe256be4 qmk_firmware/quantum/audio.h -rw-r--r-- 550 bytes
12a9b2b9 — IBNobody Merge remote-tracking branch 'remotes/jackhumbert/master' into personal_atomic_planck 9 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
#include "musical_notes.h"

typedef union {
    uint8_t raw;
    struct {
        bool    enable :1;
        uint8_t level  :7;
    };
} audio_config_t;

void audio_toggle(void);
void audio_on(void);
void audio_off(void);

void play_sample(uint8_t * s, uint16_t l, bool r);
void play_note(double freq, int vol);
void stop_note(double freq);
void stop_all_notes();
void init_notes();
void play_notes(float (*np)[][2], uint8_t n_length, bool n_repeat, float n_rest);