Zack
Zack
my ui proposition is to have a menu for save/load for adding specific filenames to saves. below, i'll explain why this is important if uploading/downloading is an option. upload/download works...
> why should this be specific to awake? ...generalized approach to any script, not just awake? i thought a lot about a generalized approach and i'd love more feedback if...
no sweat! don't hesitate to ping me if something doesn't seem to work
Hi @sletz, I am having trouble with this as well. I am using Teensy 4.1. I am working directly from [the demo](https://faustdoc.grame.fr/tutorials/teensy/#notes-about-computational-power-and-memory-footprint). ``` > cat FaustZita.dsp import("stdfaust.lib"); process = dm.zita_light;...
I'm not sure - I assumed the memory would be fine because it is listed in [the tutorial](https://faustdoc.grame.fr/tutorials/teensy/). I tried using Freeverb and still got no input. Actually this one...
It does! ``` #include #include "Simple.h" Simple fx; AudioInputI2S in; AudioOutputI2S out; AudioControlSGTL5000 audioShield; AudioConnection patchCord0(in,0,fx,0); AudioConnection patchCord1(in,1,fx,1); AudioConnection patchCord2(fx,0,out,0); AudioConnection patchCord3(fx,1,out,1); void setup() { AudioMemory(20); audioShield.enable(); audioShield.inputSelect(AUDIO_INPUT_LINEIN); audioShield.volume(0.1); }...
I can confirm that the tutorial code works with MarkT's fix, thanks @MattKuebrich. But I can't transfer the fix from that code to any of my code generated with faust...
Okay I got some progress. @sletz, you are of course right, it is a memory issue. I generated using 2.15.11 (could not find a tag for 2.15.5) and got a...
I did not, I only did what was in that working example: `-scal -ftz 0`. I can try that when I get back to the device.
No luck on using the latest dev and reducing all the memory to low amounts (2048) (FAUST Version 2.40.9) No luck using the `-dlt 0` option on version 2.15.11. But...