forked from ch-nry/nozoid_nozori
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m84_FM.ino
209 lines (188 loc) · 6.35 KB
/
m84_FM.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
// --------------------------------------------------------------------------
// This file is part of the NOZORI firmware.
//
// NOZORI firmware 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 3 of the License, or
// (at your option) any later version.
//
// NOZORI firmware 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 NOZORI firmware. If not, see <http://www.gnu.org/licenses/>.
// --------------------------------------------------------------------------
// quad VCO oscillator with exponential frequency modulation
// Pot 1 : FQ1
// Pot 2 : Mod1 (or fine tune if nothing is connected on the modulation)
// Pot 3 : FQ2
// Pot 4 : MOD2
// Pot 5 : FQ3
// Pot 6 : MOD3
// Pot 7 : FQ4
// Pot 8 : MOD4
// IN 1 : 1V/Oct
// IN 2 : FQ
// Selecteur3 : VCO WS : rising saw, falling saw, square
// OUT 1 : OUTL
// OUT 2 : OUTR
inline void FM_init_() {
sin1_phase = 0;
sin2_phase = 0;
sin3_phase = 0;
sin4_phase = 0;
}
inline void FM_loop_() {
filter16_nozori_84
test_connect_loop_84();
int32_t freq;
// Oscillateur 4
freq = (CV_filter16_out[index_filter_pot7])*2800;
freq += 0x04000000;
macro_fq2increment
increment_4 = increment1; //save
// Oscillateur 3
freq = (CV_filter16_out[index_filter_pot5])*2800;
freq += 0x04000000;
macro_fq2increment_novar
increment_3 = increment1; //save
// Oscillateur 2
freq = (CV_filter16_out[index_filter_pot3])*2800;
freq += 0x04000000;
macro_fq2increment_novar
increment_2 = increment1; //save
if (IN1_connect < 60) led2(audio_inL >> 23); else set_led2(0);
if (IN2_connect < 60) led4(audio_inR >> 23); else set_led4(0);
}
inline void FM_audio_() {
int32_t outS, tmpS, modulation1, modulation2, freq;
uint32_t out, out2;
uint32_t freq_MSB, freq_LSB;
uint32_t increment1, increment2;
switch (get_toggle()) {
case 0 :
// Oscillateur 4
//freq = (CV_filter16_out[index_filter_pot7])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_4;
sin4_phase += increment1<<3;
tmpS = sin4_phase^0x80000000;
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot8]);
modulation1 = tmpS >> 6;
// Oscillateur 3
//freq = (CV_filter16_out[index_filter_pot5])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_3;
sin3_phase += increment1<<3;
tmpS = sin3_phase^0x80000000;
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot6]);
modulation1 += tmpS >> 6;
// Oscillateur 2
//freq = (CV_filter16_out[index_filter_pot3])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_2;
sin2_phase += increment1<<3;
tmpS = sin2_phase^0x80000000;
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot4]);
modulation1 += tmpS >> 6;
// Oscillateur 1
freq = (CV_filter16_out[index_filter_pot1])<<11;
freq += 0x07000000;
macro_1VOct_IN1
macro_FqMod_fine_IN2(pot2)
freq += modulation1;
macro_fq2increment_novar
sin1_phase += increment1<<3;
out = fast_sin(sin1_phase);
out2 = fast_sin(sin1_phase<<1);
break;
case 1 :
// Oscillateur 4
//freq = (CV_filter16_out[index_filter_pot7])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_4;
sin4_phase += increment1<<3;
tmpS = -(sin4_phase^0x80000000);
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot8]);
modulation1 = tmpS >> 6;
// Oscillateur 3
//freq = (CV_filter16_out[index_filter_pot5])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_3;
sin3_phase += increment1<<3;
tmpS = -(sin3_phase^0x80000000);
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot6]);
modulation1 += tmpS >> 6;
// Oscillateur 2
//freq = (CV_filter16_out[index_filter_pot3])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_2;
sin2_phase += increment1<<3;
tmpS = -(sin2_phase^0x80000000);
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot4]);
modulation1 += tmpS >> 6;
// Oscillateur 1
freq = (CV_filter16_out[index_filter_pot1])<<11;
freq += 0x07000000;
macro_1VOct_IN1
macro_FqMod_fine_IN2(pot2)
freq += modulation1;
macro_fq2increment_novar
sin1_phase += increment1<<3;
out = fast_sin(sin1_phase);
out2 = fast_sin(sin1_phase<<1);
break;
case 2 :
// Oscillateur 4
//freq = (CV_filter16_out[index_filter_pot7])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_4;
sin4_phase += increment1<<3;
tmpS = (sin4_phase & 0x80000000)? 0x7FFFFFFF:0x80000000;
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot8]);
modulation1 = tmpS >> 6;
// Oscillateur 3
//freq = (CV_filter16_out[index_filter_pot5])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_3;
sin3_phase += increment1<<3;
tmpS = (sin3_phase & 0x80000000)? 0x7FFFFFFF:0x80000000;
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot6]);
modulation1 += tmpS >> 6;
// Oscillateur 2
//freq = (CV_filter16_out[index_filter_pot3])<<11;
//freq += 0x04000000;
//macro_fq2increment_novar
increment1 = increment_2;
sin2_phase += increment1<<3;
tmpS = (sin2_phase & 0x80000000)? 0x7FFFFFFF:0x80000000;
tmpS = ((tmpS>>16) * CV_filter16_out[index_filter_pot4]);
modulation1 += tmpS >> 6;
// Oscillateur 1
freq = (CV_filter16_out[index_filter_pot1])<<11;
freq += 0x07000000;
macro_1VOct_IN1
macro_FqMod_fine_IN2(pot2)
freq += modulation1;
macro_fq2increment_novar
sin1_phase += increment1<<3;
out = fast_sin(sin1_phase);
out2 = fast_sin(sin1_phase<<1);
break;
}
out -= out >> 2; // reduire un peu le gain pour rester ds -5/+5V
out += 0x80000000 >> 2; // pour symetriser
out2 -= out2 >> 2; // reduire un peu le gain pour rester ds -5/+5V
out2 += 0x80000000 >> 2; // pour symetriser
macro_out_stereo
}