This is a part of the Kinetiszer project.

Dependents:   SoundEngine

Committer:
Clemo
Date:
Tue Oct 28 12:19:22 2014 +0000
Revision:
0:5a419ba2726d
Error & warning free (I believe as I don't know how to clean).

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Clemo 0:5a419ba2726d 1 /*
Clemo 0:5a419ba2726d 2 Copyright 2013 Paul Soulsby www.soulsbysynths.com
Clemo 0:5a419ba2726d 3 This file is part of Atmegatron.
Clemo 0:5a419ba2726d 4
Clemo 0:5a419ba2726d 5 Atmegatron is free software: you can redistribute it and/or modify
Clemo 0:5a419ba2726d 6 it under the terms of the GNU General Public License as published by
Clemo 0:5a419ba2726d 7 the Free Software Foundation, either version 3 of the License, or
Clemo 0:5a419ba2726d 8 (at your option) any later version.
Clemo 0:5a419ba2726d 9
Clemo 0:5a419ba2726d 10 Atmegatron is distributed in the hope that it will be useful,
Clemo 0:5a419ba2726d 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
Clemo 0:5a419ba2726d 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Clemo 0:5a419ba2726d 13 GNU General Public License for more details.
Clemo 0:5a419ba2726d 14
Clemo 0:5a419ba2726d 15 You should have received a copy of the GNU General Public License
Clemo 0:5a419ba2726d 16 along with Atmegatron. If not, see <http://www.gnu.org/licenses/>.
Clemo 0:5a419ba2726d 17 */
Clemo 0:5a419ba2726d 18
Clemo 0:5a419ba2726d 19 //**********Bipolar LFO. 16 waveforms, each 64 samples long.***************
Clemo 0:5a419ba2726d 20
Clemo 0:5a419ba2726d 21 #ifndef __LFO_H__
Clemo 0:5a419ba2726d 22 #define __LFO_H__
Clemo 0:5a419ba2726d 23
Clemo 0:5a419ba2726d 24
Clemo 0:5a419ba2726d 25 #define LFO_LEN 64
Clemo 0:5a419ba2726d 26 extern const signed char lfo_store[16][LFO_LEN];
Clemo 0:5a419ba2726d 27
Clemo 0:5a419ba2726d 28 void LFO_Let_Speed(unsigned int newspeed);
Clemo 0:5a419ba2726d 29 unsigned int LFO_Get_Speed(void);
Clemo 0:5a419ba2726d 30 void LFO_Let_Type(byte newtable);
Clemo 0:5a419ba2726d 31 byte LFO_Get_Type(void);
Clemo 0:5a419ba2726d 32 void LFO_Let_Invert(boolean newinv);
Clemo 0:5a419ba2726d 33 boolean LFO_Get_Invert(void);
Clemo 0:5a419ba2726d 34 signed char LFO_Get_Level(void);
Clemo 0:5a419ba2726d 35 void LFO_Reset(void);
Clemo 0:5a419ba2726d 36 void LFO_CalcVal(void);
Clemo 0:5a419ba2726d 37
Clemo 0:5a419ba2726d 38
Clemo 0:5a419ba2726d 39 #endif // __LFO_H__