Hi Pensive,
I had 12 crushers, and the teensy would lock when I commented the following out in setup, but it could just be that it's a silly amount of crushers.
The overall sketch was probably a little ambitious which could have also lead to the crash. Hope I didn't sound accusing, the crusher is brilliant and a ton of fun
Cheers
Alex
I had 12 crushers, and the teensy would lock when I commented the following out in setup, but it could just be that it's a silly amount of crushers.
The overall sketch was probably a little ambitious which could have also lead to the crash. Hope I didn't sound accusing, the crusher is brilliant and a ton of fun
Code:
int current_CrushBits = 16; //this defaults to passthrough.
int current_SampleRate = 44100; // this defaults to passthrough.
bitcrusher1.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher2.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher3.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher4.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher5.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher6.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher7.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher8.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher9.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher10.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher11.updateCrusher(current_CrushBits,current_SampleRate);
bitcrusher12.updateCrusher(current_CrushBits,current_SampleRate);
Cheers
Alex

