MichaelMeissner
Senior Member+
wow, thanks for the fast answer. Can I make it compatible, or is this an absolutely no
The Teensy 3.x chips use an Arm Cortex M4 chip, while the Teensy LC uses an Arm Cortex M0 chip. Among other things that the M4 has that the M0 does not have is a bunch of integer vector instructions where it does the operation on an integer sized value (32-bits) which are really parallel 8/16-bit fields. The audio libraries use these instructions to speed up the processing of the audio files. In addition, the M4 normally runs at a higher clock speed.
So, you may be able to do it, but it may involve adding #ifdef's to the code for LC support, and possibly not doing as much due to the slower processor.