2015-08-16 17:52:03 -04:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <util/delay.h>
|
|
|
|
|
2016-01-13 00:25:31 -05:00
|
|
|
void play_sample(uint8_t * s, uint16_t l, bool r);
|
2015-08-29 11:54:38 -04:00
|
|
|
void play_note(double freq, int vol);
|
|
|
|
void stop_note(double freq);
|
2016-04-15 14:42:50 -05:00
|
|
|
void stop_all_notes(void);
|
|
|
|
void init_notes(void);
|
2016-01-13 00:25:31 -05:00
|
|
|
void play_notes(float (*np)[][2], uint8_t n_length, bool n_repeat);
|