qmk-dactyl-manuform-a/quantum/audio/voices.h

53 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 06:37:45 +02:00
#include <stdint.h>
#include <stdbool.h>
#if defined(__AVR__)
2019-08-30 20:19:03 +02:00
# include <avr/io.h>
#endif
#include "wait.h"
#include "luts.h"
2016-04-21 06:37:45 +02:00
#ifndef VOICES_H
2019-08-30 20:19:03 +02:00
# define VOICES_H
2016-04-21 06:37:45 +02:00
float voice_envelope(float frequency);
typedef enum {
2016-04-21 06:40:00 +02:00
default_voice,
2019-08-30 20:19:03 +02:00
# ifdef AUDIO_VOICES
2016-12-12 21:39:07 +01:00
something,
2016-12-19 17:18:18 +01:00
drums,
2016-04-21 06:40:00 +02:00
butts_fader,
octave_crunch,
duty_osc,
duty_octave_down,
2016-04-26 07:16:47 +02:00
delayed_vibrato,
2019-08-30 20:19:03 +02:00
// delayed_vibrato_octave,
// 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 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