1
0
Fork 0
qmk_firmware/quantum/audio/voices.h

51 lines
1.3 KiB
C
Raw Normal View History

/* Copyright 2016 Jack Humbert
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2016-04-21 04:37:45 +00:00
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
#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,
#ifdef AUDIO_VOICES
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,
octave_crunch,
duty_osc,
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,
#endif
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