- drums volume - ep tune - drums exclude for HH and HC - filter Dexed enabled again.dev
parent
3d1564b205
commit
de2a893fb7
@ -0,0 +1,26 @@ |
|||||||
|
#!/bin/bash |
||||||
|
|
||||||
|
echo "#include <Arduino.h>" > synth_dexed.h |
||||||
|
echo "#include <Audio.h>" >> synth_dexed.h |
||||||
|
echo "#include \"config.h\"" >> synth_dexed.h |
||||||
|
for i in `cat includes.txt` |
||||||
|
do |
||||||
|
echo "/*****************************************************" >> synth_dexed.h |
||||||
|
echo " * CODE; ${i}" >> synth_dexed.h |
||||||
|
echo " *****************************************************/" >> synth_dexed.h |
||||||
|
|
||||||
|
cat $i >> synth_dexed.h |
||||||
|
echo "" >> synth_dexed.h |
||||||
|
echo "//=====================================================" >> synth_dexed.h |
||||||
|
done |
||||||
|
|
||||||
|
echo "#include \"synth_dexed.h\"" > synth_dexed.cpp |
||||||
|
for i in `ls orig_code/*.cpp` |
||||||
|
do |
||||||
|
echo "/*****************************************************" >> synth_dexed.cpp |
||||||
|
echo " * CODE; ${i}" >> synth_dexed.cpp |
||||||
|
echo " *****************************************************/" >> synth_dexed.cpp |
||||||
|
cat $i >> synth_dexed.cpp |
||||||
|
echo "" >> synth_dexed.cpp |
||||||
|
echo "//=====================================================" >> synth_dexed.cpp |
||||||
|
done |
@ -0,0 +1,17 @@ |
|||||||
|
orig_code/synth.h |
||||||
|
orig_code/aligned_buf.h |
||||||
|
orig_code/sin.h |
||||||
|
orig_code/exp2.h |
||||||
|
orig_code/fast_log.h |
||||||
|
orig_code/freqlut.h |
||||||
|
orig_code/lfo.h |
||||||
|
orig_code/env.h |
||||||
|
orig_code/pitchenv.h |
||||||
|
orig_code/controllers.h |
||||||
|
orig_code/PluginFx.h |
||||||
|
orig_code/fm_op_kernel.h |
||||||
|
orig_code/fm_core.h |
||||||
|
orig_code/dx7note.h |
||||||
|
orig_code/dexed.h |
||||||
|
orig_code/porta.h |
||||||
|
orig_code/source_microdexed.h |
Loading…
Reference in new issue