2016-04-21 04:37:45 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <avr/io.h>
|
|
|
|
#include <util/delay.h>
|
2016-05-03 17:56:40 +00:00
|
|
|
#include "luts.h"
|
2016-04-21 04:37:45 +00:00
|
|
|
|
|
|
|
#ifndef VOICES_H
|
|
|
|
#define VOICES_H
|
|
|
|
|
|
|
|
float voice_envelope(float frequency);
|
|
|
|
|
|
|
|
typedef enum {
|
2016-04-21 04:40:00 +00:00
|
|
|
default_voice,
|
2016-12-12 20:39:07 +00:00
|
|
|
something,
|
2016-12-19 16:18:18 +00:00
|
|
|
drums,
|
2016-04-21 04:40:00 +00:00
|
|
|
butts_fader,
|
2016-04-21 22:14:25 +00:00
|
|
|
octave_crunch,
|
|
|
|
duty_osc,
|
2016-04-22 03:10:47 +00:00
|
|
|
duty_octave_down,
|
2016-04-26 05:16:47 +00:00
|
|
|
delayed_vibrato,
|
|
|
|
// delayed_vibrato_octave,
|
2016-04-25 04:59:47 +00:00
|
|
|
// duty_fifth_down,
|
|
|
|
// duty_fourth_down,
|
|
|
|
// duty_third_down,
|
|
|
|
// duty_fifth_third_down,
|
2016-04-21 22:14:25 +00:00
|
|
|
number_of_voices // important that this is last
|
2016-04-21 04:37:45 +00:00
|
|
|
} voice_type;
|
|
|
|
|
|
|
|
void set_voice(voice_type v);
|
2016-04-22 05:01:38 +00:00
|
|
|
void voice_iterate(void);
|
|
|
|
void voice_deiterate(void);
|
2016-04-21 04:37:45 +00:00
|
|
|
|
|
|
|
#endif
|