2016-04-21 06:37:45 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <util/delay.h>
|
|
|
|
#include "musical_notes.h"
|
|
|
|
#include "song_list.h"
|
|
|
|
|
|
|
|
#ifndef VOICES_H
|
|
|
|
#define VOICES_H
|
|
|
|
|
|
|
|
float voice_envelope(float frequency);
|
|
|
|
|
|
|
|
typedef enum {
|
2016-04-21 06:40:00 +02:00
|
|
|
default_voice,
|
|
|
|
butts_fader,
|
2016-04-22 00:14:25 +02:00
|
|
|
octave_crunch,
|
|
|
|
duty_osc,
|
2016-04-22 05:10:47 +02:00
|
|
|
duty_octave_down,
|
2016-04-22 07:02:50 +02:00
|
|
|
duty_fifth_down,
|
|
|
|
duty_fourth_down,
|
2016-04-22 17:58:29 +02:00
|
|
|
duty_third_down,
|
|
|
|
duty_fifth_third_down,
|
2016-04-22 00:14:25 +02:00
|
|
|
number_of_voices // important that this is last
|
2016-04-21 06:37:45 +02:00
|
|
|
} voice_type;
|
|
|
|
|
|
|
|
void set_voice(voice_type v);
|
2016-04-22 07:01:38 +02:00
|
|
|
void voice_iterate(void);
|
|
|
|
void voice_deiterate(void);
|
2016-04-21 06:37:45 +02:00
|
|
|
|
|
|
|
#endif
|