-
Notifications
You must be signed in to change notification settings - Fork 0
/
kick_synth.cpp
255 lines (221 loc) · 5.85 KB
/
kick_synth.cpp
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
/* teensy kick
*
* Copyright (c) 2022 Tim Braun <[email protected]>
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* 1. The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* 2. If the Software is incorporated into a build system that allows
* selection among a list of target devices, then similar target
* devices manufactured by PJRC.COM must be included in the list of
* target devices and selectable in the same manner.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <Arduino.h>
#include <Audio.h>
#include <usb_dev.h>
#include "piezoTrigger.h"
#define TAP_INPUT 14
#define dbg(...) \
fiprintf(stderr, __VA_ARGS__)
#define dbg_putc(c) \
fputc((c), stderr)
#define printf( ... ) \
fiprintf(stdout, __VA_ARGS__ )
void onNoteOn(byte chan, byte note, byte vel);
void onNoteOff(byte chan, byte note, byte vel);
void onPiezoTrigger(uint32_t);
AudioControlSGTL5000 dac;
AudioOutputI2S out;
AudioAmplifier gain_l;
AudioAmplifier gain_r;
#if defined(USE_SAMPLE)
AudioPlayMemory2 kickSample;
// AudioPlayMemory kickSample;
AudioConnection patchCord1_l(kickSample, 0, gain_l, 0);
AudioConnection patchCord1_r(kickSample, 0, gain_r, 0);
#else
AudioSynthSimpleDrum kick;
AudioConnection patchCord1_l(kick, gain_l);
AudioConnection patchCord1_r(kick, gain_r);
#endif
AudioConnection patchCord3(gain_l, 0, out, 0);
// AudioConnection patchCord3(kickSample, 0, out, 0);
AudioConnection patchCord4(gain_r, 0, out, 1);
// AudioConnection patchCord4(kickSample, 0, out, 1);
usb_serial_class Serial;
elapsedMillis since_LED_switch, since_hello;
elapsedMillis interrupt_time;
piezoTrigger piezo(TAP_INPUT, onPiezoTrigger);
uint32_t counter, bigtime;
uint32_t interrupts_last, interrupts_delta;
//////////////////////////////
//
// Normal setup() function
// initialize usb, midi, audio
//
//////////////////////////////
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
usb_init();
Serial.begin(115200);
delay(100);
while (!Serial)
delay(100);
dbg("\nHello teensy kick " TEENSYKICK_VERSION "\n\n");
// Midi setup
usbMIDI.setHandleNoteOn(onNoteOn);
usbMIDI.setHandleNoteOff(onNoteOff);
delay(1000);
// Audio component setup
AudioMemory(6);
#if defined(USE_SAMPLE)
#else
kick.frequency(80);
kick.length(200);
kick.secondMix(0.25);
kick.pitchMod(0x2f0); // 0x200 is no mod...
#endif
dac.enable();
dac.lineOutLevel( 14 );
gain_l.gain(0.5);
gain_r.gain(0.5);
piezo.setup();
}
void loop()
{
static bool run = true, levelHigh = true;
static float gain = 1.0f;
if (since_LED_switch > 500) {
digitalToggleFast(LED_BUILTIN);
since_LED_switch = 0;
}
if (since_hello >= 1000) {
// dbg(".");
if (++counter >= 10) {
/*
* This is code to verify the audio servicing interrupts
*
uint32_t this_count = out.isrCount();
interrupts_delta = this_count - interrupts_last;
interrupts_last = this_count;
dbg(" isr=%4lu %5lu %3lu\n", interrupts_delta,
(uint32_t)interrupt_time, bigtime++);
interrupt_time = 0;
*/
counter = 0;
}
since_hello = 0;
}
while (Serial.available()) {
int incoming = Serial.read();
switch (incoming) {
case 'a':
printf("Audio used %u buffers\n", AudioMemoryUsageMax() );
break;
#if defined(USE_SAMPLE)
#else
case 'b':
printf("drum used %u cycles\n", kick.cpu_cycles_total );
break;
#endif
case ' ':
run = !run;
printf("now %s\n", run? "running" : "stopped");
if (run) {
#if defined(USE_SAMPLE)
kickSample.play(AudioSampleKiddykick);
#else
kick.noteOn();
#endif
}
else {
#if defined(USE_SAMPLE)
#else
kick.noteOn(0x6000);
#endif
}
break;
// Adjust the gain
case 'g':
gain = gain / 2.0f;
if (gain < 0.0625)
gain = 1.0f;
fprintf(stdout, "gain %3u\n", int(gain * 100.0));
gain_r.gain( gain );
gain_l.gain( gain );
break;
case 'l':
if (levelHigh) {
dac.lineOutLevel( 28 );
}
else {
dac.lineOutLevel( 14 );
}
levelHigh = !levelHigh;
dbg("level now %s\n", levelHigh? "high" : "low");
break;
//
case 't':
{
bool piezoTest = piezo.testMode();
piezoTest = piezo.testMode( not piezoTest );
printf("piezo test = %s\n", piezoTest? "true" : "false");
}
break;
// Print the version from compile time
case 'v':
printf("\nteensy kick " TEENSYKICK_VERSION "\n\n");
break;
// case 'r':
// _reboot_Teensyduino_();
// break;
case '\n':
break;
default:
dbg_putc(incoming);
}
}
piezo.loop();
usbMIDI.read();
}
void onNoteOn(byte chan, byte note, byte vel)
{
dbg("N ch=%u %u( %u ) on\n", chan, note, vel);
#if defined(USE_SAMPLE)
kickSample.play(AudioSampleKiddykick);
#else
uint32_t v = vel << 8;
kick.noteOn(v);
#endif
}
void onNoteOff(byte chan, byte note, byte vel)
{
dbg("N c=%u %u( %u ) off\n", chan, note, vel);
}
void onPiezoTrigger(uint32_t vel)
{
dbg("PiezoTrigger %4lu %4lu\n\n", vel, millis());
#if defined(USE_SAMPLE)
kickSample.play(AudioSampleKiddykick);
#else
kick.noteOn(vel);
#endif
}