You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
490 B
28 lines
490 B
9 years ago
|
#include <avr/io.h>
|
||
|
#include <avr/interrupt.h>
|
||
|
#include <avr/pgmspace.h>
|
||
|
|
||
9 years ago
|
#define VIBRATO_LUT_LENGTH 20
|
||
9 years ago
|
|
||
|
const float VIBRATO_LUT[VIBRATO_LUT_LENGTH] = { \
|
||
|
1.00223368114872,
|
||
|
1.00425299436105,
|
||
|
1.00585842560279,
|
||
|
1.00689052852052,
|
||
|
1.0072464122237,
|
||
|
1.00689052852052,
|
||
|
1.00585842560279,
|
||
|
1.00425299436105,
|
||
|
1.00223368114872,
|
||
|
1,
|
||
|
0.99777129706302,
|
||
|
0.99576501699778,
|
||
|
0.994175695650927,
|
||
|
0.993156625943589,
|
||
|
0.992805720491269,
|
||
|
0.993156625943589,
|
||
|
0.994175695650927,
|
||
|
0.99576501699778,
|
||
|
0.99777129706302,
|
||
|
1
|
||
|
};
|