forked from marcel-licence/esp32_fm_synth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
esp32_fm_synth.ino
547 lines (445 loc) · 11.4 KB
/
esp32_fm_synth.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
/*
* Copyright (c) 2022 Marcel Licence
*
* 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 3 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/>.
*
* Dieses Programm ist Freie Software: Sie können es unter den Bedingungen
* der GNU General Public License, wie von der Free Software Foundation,
* Version 3 der Lizenz oder (nach Ihrer Wahl) jeder neueren
* veröffentlichten Version, weiter verteilen und/oder modifizieren.
*
* Dieses Programm wird in der Hoffnung bereitgestellt, dass es nützlich sein wird, jedoch
* OHNE JEDE GEWÄHR,; sogar ohne die implizite
* Gewähr der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
* Siehe die GNU General Public License für weitere Einzelheiten.
*
* Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
* Programm erhalten haben. Wenn nicht, siehe <https://www.gnu.org/licenses/>.
*/
/**
* @file ml_synth_basic_example.ino
* @author Marcel Licence
*
* this file should be opened with arduino, this is the main project file
*
* shown in: https://youtu.be/rGTw05GKwvU
*/
#ifdef __CDT_PARSER__
#include <cdt.h>
#endif
/*
* global project configuration
* stays on top of multi-file-compilation
*/
#include "config.h"
#include <Arduino.h>
#include <FS.h>
#include <SD_MMC.h>
#include <WiFi.h>
extern void Status_ValueChangedFloat(const char *descr, float value);
/* requires the ML_SynthTools library: https://github.com/marcel-licence/ML_SynthTools */
#include <ml_arp.h>
#include <ml_delay.h>
#include <ml_midi_ctrl.h>
#include <ml_reverb.h>
#ifdef OLED_OSC_DISP_ENABLED
#include <ml_scope.h>
#endif
/* to avoid the high click when turning on the microphone */
static float click_supp_gain = 0.0f;
/* this application starts here */
void setup()
{
// put your setup code here, to run once:
delay(500);
heap_caps_print_heap_info(MALLOC_CAP_8BIT);
Serial.begin(115200);
Serial.println();
Serial.printf("Loading data\n");
click_supp_gain = 0.0f;
#ifdef BLINK_LED_PIN
Blink_Setup();
#endif
#if 0
Status_Setup();
#endif
Audio_Setup();
#ifdef ESP32_AUDIO_KIT
button_setup();
#endif
Sine_Init();
/*
* Initialize reverb
* The buffer shall be static to ensure that
* the memory will be exclusive available for the reverb module
*/
static float revBuffer[REV_BUFF_SIZE];
Reverb_Setup(revBuffer);
/*
* Prepare a buffer which can be used for the delay
*/
static int16_t *delBuffer = (int16_t *)malloc(sizeof(int16_t) * MAX_DELAY);
Delay_Init(delBuffer, MAX_DELAY);
/*
* setup midi module / rx port
*/
Midi_Setup();
#ifdef ARP_MODULE_ENABLED
Arp_Init(24 * 4); /* slowest tempo one step per bar */
#endif
FmSynth_Init();
#ifdef ESP32
Serial.printf("ESP.getFreeHeap() %d\n", ESP.getFreeHeap());
Serial.printf("ESP.getMinFreeHeap() %d\n", ESP.getMinFreeHeap());
Serial.printf("ESP.getHeapSize() %d\n", ESP.getHeapSize());
Serial.printf("ESP.getMaxAllocHeap() %d\n", ESP.getMaxAllocHeap());
Serial.printf("Total heap: %d\n", ESP.getHeapSize());
Serial.printf("Free heap: %d\n", ESP.getFreeHeap());
/* PSRAM will be fully used by the looper */
Serial.printf("Total PSRAM: %d\n", ESP.getPsramSize());
Serial.printf("Free PSRAM: %d\n", ESP.getFreePsram());
#endif
Serial.printf("Firmware started successfully\n");
#ifdef NOTE_ON_STARTUP /* activate this line to get a tone on startup to test the DAC */
FmSynth_NoteOn(0, 64, 1.0f);
#endif
#ifdef MIDI_STREAM_PLAYER_ENABLED
MidiStreamPlayer_Init();
char midiFile[] = "/fm_demo2_fm0.mid";
MidiStreamPlayer_PlayMidiFile_fromLittleFS(midiFile, 3);
#endif
Core0TaskInit();
}
#ifdef ESP32
/*
* Core 0
*/
/* this is used to add a task to core 0 */
TaskHandle_t Core0TaskHnd;
inline
void Core0TaskInit()
{
/* we need a second task for the terminal output */
xTaskCreatePinnedToCore(Core0Task, "CoreTask0", 8000, NULL, 999, &Core0TaskHnd, 0);
}
inline
void Core0TaskSetup()
{
/*
* init your stuff for core0 here
*/
#ifdef OLED_OSC_DISP_ENABLED
ScopeOled_Setup();
#endif
Status_Setup();
#ifdef MIDI_VIA_USB_ENABLED
usb_setup();
MIDI_setShortMsgHandler(HandleShortMsg);
#endif
#ifdef PRESSURE_SENSOR_ENABLED
PressureSetup();
#endif
}
void Core0TaskLoop()
{
/*
* put your loop stuff for core0 here
*/
Status_Process();
#ifdef MIDI_VIA_USB_ENABLED
usb_loop();
#endif
#ifdef OLED_OSC_DISP_ENABLED
ScopeOled_Process();
#endif
#ifdef PRESSURE_SENSOR_ENABLED
PressureLoop();
#endif
}
void Core0Task(void *parameter)
{
Core0TaskSetup();
while (true)
{
Core0TaskLoop();
/* this seems necessary to trigger the watchdog */
delay(1);
yield();
}
}
#endif /* ESP32 */
float master_output_gain = 0.15f;
#ifdef ESP32_AUDIO_KIT
/* little enum to make switching more clear */
enum acSource
{
acSrcLine,
acSrcMic
};
/* line in is used by default, so it should not be changed here */
enum acSource selSource = acSrcLine;
/* be carefull when calling this function, microphones can cause very bad feedback!!! */
void App_ToggleSource(uint8_t channel, float value)
{
if (value > 0)
{
switch (selSource)
{
case acSrcLine:
click_supp_gain = 0.0f;
#ifdef AC101_ENABLED
ac101_setSourceMic();
#endif
selSource = acSrcMic;
// Status_TestMsg("Input: Microphone");
break;
case acSrcMic:
click_supp_gain = 0.0f;
#ifdef AC101_ENABLED
ac101_setSourceLine();
#endif
selSource = acSrcLine;
// Status_TestMsg("Input: LineIn");
break;
}
}
}
#endif
void App_SetOutputLevel(uint8_t not_used, float value)
{
master_output_gain = value;
}
static uint32_t midiSyncCount = 0;
void Midi_SyncRecvd()
{
midiSyncCount += 1;
}
void Synth_RealTimeMsg(uint8_t msg)
{
#ifndef MIDI_SYNC_MASTER
switch (msg)
{
case 0xfa: /* start */
Arp_Reset();
break;
case 0xf8: /* Timing Clock */
Midi_SyncRecvd();
break;
}
#endif
}
#ifdef MIDI_SYNC_MASTER
#define MIDI_PPQ 24
#define SAMPLES_PER_MIN (SAMPLE_RATE*60)
static float midi_tempo = 120.0f;
void MidiSyncMasterLoop(void)
{
static float midiDiv = 0;
midiDiv += SAMPLE_BUFFER_SIZE;
if (midiDiv >= (SAMPLES_PER_MIN) / (MIDI_PPQ * midi_tempo))
{
midiDiv -= (SAMPLES_PER_MIN) / (MIDI_PPQ * midi_tempo);
Midi_SyncRecvd();
}
}
void Synth_SetMidiMasterTempo(uint8_t unused, float val)
{
midi_tempo = 60.0f + val * (240.0f - 60.0f);
}
#endif
void Synth_SongPosition(uint16_t pos)
{
Serial.printf("Songpos: %d\n", pos);
if (pos == 0)
{
Arp_Reset();
}
}
void Synth_SongPosReset(uint8_t unused, float var)
{
if (var > 0)
{
Synth_SongPosition(0);
}
}
/*
* this should avoid having a constant offset on our signal
* I am not sure if that is required, but in case it can avoid early clipping
*/
static float fl_offset = 0.0f;
static float fr_offset = 0.0f;
static float fl_sample[SAMPLE_BUFFER_SIZE];
static float fr_sample[SAMPLE_BUFFER_SIZE];
static float m1_sample[SAMPLE_BUFFER_SIZE];
#ifndef absf
#define absf(a) ((a>=0.0f)?(a):(-a))
#endif
/*
* the main audio task
*/
inline void audio_task()
{
#ifdef AUDIO_PASS_THROUGH
memset(fl_sample, 0, sizeof(fl_sample));
memset(fr_sample, 0, sizeof(fr_sample));
memset(m1_sample, 0, sizeof(m1_sample));
#ifdef ESP32_AUDIO_KIT
Audio_Input(fl_sample, fr_sample);
#endif
#else
memset(fl_sample, 0, sizeof(fl_sample));
memset(fr_sample, 0, sizeof(fr_sample));
memset(m1_sample, 0, sizeof(m1_sample));
#endif
for (int n = 0; n < SAMPLE_BUFFER_SIZE; n++)
{
/*
* this avoids the high peak coming over the mic input when switching to it
*/
fl_sample[n] *= click_supp_gain;
fr_sample[n] *= click_supp_gain;
if (click_supp_gain < 1.0f)
{
click_supp_gain += 0.00001f;
}
else
{
click_supp_gain = 1.0f;
}
/* make it a bit quieter */
fl_sample[n] *= 0.5f;
fr_sample[n] *= 0.5f;
/*
* this removes dc from signal
*/
fl_offset = fl_offset * 0.99 + fl_sample[n] * 0.01;
fr_offset = fr_offset * 0.99 + fr_sample[n] * 0.01;
fl_sample[n] -= fl_offset;
fr_sample[n] -= fr_offset;
}
/*
* main loop core
*/
FmSynth_Process(m1_sample, SAMPLE_BUFFER_SIZE);
/*
* apply master output gain
*/
for (int n = 0; n < SAMPLE_BUFFER_SIZE; n++)
{
/* apply master_output_gain */
m1_sample[n] *= master_output_gain;
}
/*
* little simple delay effect
*/
Delay_Process_Buff(m1_sample, SAMPLE_BUFFER_SIZE);
/*
* add some mono reverb
*/
Reverb_Process(m1_sample, SAMPLE_BUFFER_SIZE);
/*
* mix mono signal to stereo out
*/
for (int n = 0; n < SAMPLE_BUFFER_SIZE; n++)
{
m1_sample[n] *= 2.125f;
fl_sample[n] += m1_sample[n];
fr_sample[n] += m1_sample[n];
}
Audio_Output(fl_sample, fr_sample);
#ifdef OLED_OSC_DISP_ENABLED
ScopeOled_AddSamples(fl_sample, fr_sample, SAMPLE_BUFFER_SIZE);
#endif
Status_Process_Sample(SAMPLE_BUFFER_SIZE);
}
/*
* this function will be called once a second
* call can be delayed when one operation needs more time (> 1/44100s)
*/
void loop_1Hz(void)
{
#ifdef ESP32_AUDIO_KIT
button_loop();
#endif
#ifdef BLINK_LED_PIN
Blink_Process();
#endif
}
/*
* this is the main loop
*/
void loop()
{
static uint32_t loop_cnt;
loop_cnt += SAMPLE_BUFFER_SIZE;
if (loop_cnt >= SAMPLE_RATE)
{
loop_cnt = 0;
loop_1Hz();
}
Midi_Process();
#ifdef MIDI_STREAM_PLAYER_ENABLED
MidiStreamPlayer_Tick(SAMPLE_BUFFER_SIZE);
#endif
#ifdef MIDI_VIA_USB_ENABLED
UsbMidi_ProcessSync();
#endif
#ifdef MIDI_SYNC_MASTER
MidiSyncMasterLoop();
#endif
#ifdef ARP_MODULE_ENABLED
Arp_Process(midiSyncCount);
midiSyncCount = 0;
#endif
audio_task();
}
/*
* Callbacks
*/
void MidiCtrl_Cb_NoteOn(uint8_t ch, uint8_t note, float vel)
{
Arp_NoteOn(ch, note, vel);
}
void MidiCtrl_Cb_NoteOff(uint8_t ch, uint8_t note)
{
Arp_NoteOff(ch, note);
}
void MidiCtrl_Status_ValueChangedIntArr(const char *descr, int value, int index)
{
Status_ValueChangedIntArr(descr, value, index);
}
void Arp_Cb_NoteOn(uint8_t ch, uint8_t note, float vel)
{
FmSynth_NoteOn(ch, note, vel);
}
void Arp_Cb_NoteOff(uint8_t ch, uint8_t note)
{
FmSynth_NoteOff(ch, note);
}
void Arp_Status_ValueChangedInt(const char *msg, int value)
{
Status_ValueChangedInt(msg, value);
}
void Arp_Status_LogMessage(const char *msg)
{
Status_LogMessage(msg);
}
void Arp_Status_ValueChangedFloat(const char *msg, float value)
{
Status_ValueChangedFloat(msg, value);
}
void Arp_Cb_Step(uint8_t step)
{
/* ignore */
}