so the correct branch for the dynamic audio library is this:
https://github.com/h4yn0nnym0u5e/Audio/tree/features/dynamic-updates
and for the core, this branch:
https://github.com/h4yn0nnym0u5e/cores/tree/feature/Audio/dynamic-updates
is that...
The latest version is in the relevant repo branch. I've been a bit lax about tagging changes, although I tend to do so only when a new Teensyduino is released, in an attempt to ensure that you can grab the latest, make the changes to cores...
In the version I have the delay constructor expects the memory type and delay size but not that bool at the end, could you point me to the files for that?
AudioEffectDelayExternal dly2(AUDIO_MEMORY_EXTMEM, 1200.0f, false);
I've also removed all...
it worked with this
AudioEffectDelayExternal delayExt1(AUDIO_MEMORY_EXTMEM, 100);
...but with a pretty small delay size, if I put bigger numbers it does get stuck : /
Hi @h4yn0nnym0u5e , I'm trying to use the AudioEffectDelayExternal from your dynamic library but I can't make it work. The psram chip I'm using is a APS6404L-3SQR, I've tried these 2 options when declaring the delay object (it enters in a reboot...