What i find extremely useful in Platformio:
1. local to the project libraries placed in the /lib folder. Compiler will look into this folder first and if an included library is not found, only then look in the global...
Coded something new during last weekend, another classic effect which sounds great with many instruments:
12 stage mono phaser with internal (built in) LFO or an external modulation input
Link to code:...
Thanks for the explanation Paul.
I have fixed the code using the __disable/__enable macros. Also changed all the float constants to use "f" postfix to ensure they are single precision floats.
And there is a new...
I might be wrong with my assumptions, but the thinking behind this was:
__disable_irq() disables all interrupts, everything including USB, timers etc.
AudioNoInterrupts(); disables the software interrupt only, where...