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.
Holger Wirtz 6c6dfd3484 Fixing volume handling for dexed engine. 4 years ago
addon Fix extension. 4 years ago
doc ... 4 years ago
third-party Added LCDMenuLib2 to third-party software. 4 years ago
.gitignore Initial commit 6 years ago
Disp_Plus.h Exchanged pan effect (simpler implementation). 4 years ago
EngineMkI.cpp Code cleanup add license additions. 6 years ago
EngineMkI.h ... 6 years ago
EngineOpl.cpp Fixes. 6 years ago
EngineOpl.h Fixes. 6 years ago
LICENSE-APACHE2.txt Code cleanup add license additions. 6 years ago
LICENSE-GPL3.txt Code cleanup add license additions. 6 years ago
MicroDexed.ino Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
PluginFx.cpp Fixing volume handling for dexed engine. 4 years ago
PluginFx.h Fixing volume handling for dexed engine. 4 years ago
README.md Adding possibility to use 2 Dexed engines (can be enabled with NUM_DEXED=2 but 5 years ago
UI.hpp Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
UI_1.h Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
UI_1_FX.h Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
UI_2.h Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
UI_2_FX.h Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
aligned_buf.h Initial version 6 years ago
config.h Completely disabling FX engine at compile time (undef USE_FX) is now 4 years ago
controllers.h Added Portamento function from https://github.com/asb2m10/dexed/pull/183 5 years ago
dexed.cpp Fixing volume handling for dexed engine. 4 years ago
dexed.h Fixes and additions for portamento. 5 years ago
dexed_sysex.cpp Disabled CPU_OVERLOAD_THROTTLE. 4 years ago
dexed_sysex.h ... 4 years ago
dx7note.cpp Complete change of the audio chain. 4 years ago
dx7note.h Fixes and additions for portamento. 5 years ago
effect_auto_pan.cpp Exchanged pan effect (simpler implementation). 4 years ago
effect_auto_pan.h Exchanged pan effect (simpler implementation). 4 years ago
effect_modulated_delay.cpp Added new effect for panning a mono signal into stereo outputs. 5 years ago
effect_modulated_delay.h Added new effect for panning a mono signal into stereo outputs. 5 years ago
effect_mono_stereo.cpp Exchanged pan effect (simpler implementation). 4 years ago
effect_mono_stereo.h Exchanged pan effect (simpler implementation). 4 years ago
effect_stereo_mono.cpp Trying to optimize calculations. 4 years ago
effect_stereo_mono.h Added new effect for panning a mono signal into stereo outputs. 5 years ago
env.cc Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
env.cpp Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
env.h Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
exp2.cpp Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
exp2.h Initial version 6 years ago
fm_core.cpp Code cleanup add license additions. 6 years ago
fm_core.h ... 6 years ago
fm_op_kernel.cc Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
fm_op_kernel.cpp Reorder config.h inclusion 5 years ago
fm_op_kernel.h Initial version 6 years ago
freqlut.cpp Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
freqlut.h Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
lfo.cpp Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
lfo.h Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
midi_devices.hpp Added MIDI-Soft-Thru selectable from menu. 4 years ago
midinotes.h Fixed summing of signals as integers. 6 years ago
module.h Initial version 6 years ago
name.c Added name for USB device. 5 years ago
pitchenv.cpp Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
pitchenv.h Changed all "double" values to macro FRAC_NUM (defined in synth.h as float), for using the FPU in the Teensy. 6 years ago
porta.cpp Added Portamento function from https://github.com/asb2m10/dexed/pull/183 5 years ago
porta.h Added Portamento function from https://github.com/asb2m10/dexed/pull/183 5 years ago
sin.cpp Small FPU optimisations. 6 years ago
sin.h Initial version 6 years ago
source_microdexed.h Removing EEPROMAnything and using EEPROM.get()/EEPROM.put() from EEPROM.h instead. 5 years ago
synth.h Optimized mono2stereo effect. 4 years ago

README.md

MicroDexed

Dexed port for Teensy (3.5/3.6/4.0 with audio shield and LCD or OLED display)

This is a port of the original Dexed/msfa engine (see https://github.com/asb2m10/dexed and https://github.com/google/music-synthesizer-for-android) to be used on a Teensy-3.5 or Teensy-3.6.

The current state is: work in progress...

License

MicroDexed is licensed on the GPL v3. The msfa component (acronym for music synthesizer for android, see https://github.com/google/music-synthesizer-for-android) stays on the Apache 2.0 license to able to collaborate between projects.

Credits & thanks

  • Dexed engine by Pascal Gauthier (asb2m10)
  • DX Synth engine (as part of Dexed): Raph Levien and the msfa team
  • PPPlay : Great OPL3 implementation, with documented code :D

Dexed comes with 3 engine types :

  • Modern : this is the original 24-bit music-synthesizer-for-android implementation.
  • Mark I : Based on the OPL Series but at a higher resolution (LUT are 10-bits). The target of this engine is to be closest to the real DX7.
  • OPL Series : this is an experimental implementation of the reversed engineered OPL family chips. 8-bit. Keep in mind that the envelopes stills needs tuning.