Yes, it looks as if your development and test code is getting a bit out of hand - Arduino doesn't make that easy, though there are hints you're using PlatformIO, which may make a difference (I've never used it...). A quick scan reveals there are...
thank you so much! I actually had the line this->env->noteOn(); in the Voice.cpp file located in test/test_singleVoice, I'm not sure how it wound up missing from the copy in test_channel
🤦♀️I feel very silly for not catching the scope issue as...
Yup, dereferencing uninitialized pointer will crash stuff! If use references rather than pointers this can't happen (but you have to initialize references in the constructor)...
Plugging a pair of skullcandy earbuds directly into the headphone jack on the audio adaptor!
The same pair i use for daily listening and for the test located in tests/test_singleVoice
great catch! Updated that line to read this->mergeMixers[i]->gain(j, ((float)j+1.0)/channelsPerMixer);
this->mergeMixers[i]->gain(j,(1.0/channelsPerMixer));
edit: idk what i was thinking the first time oops.
and thank you for catching why I...
ah! I'm so sorry, i forgot to commit that change, I had already noticed that and changed it in my local code, the code is otherwise identical, will push that now to avoid confusion
Howdy everyone! Thank you all so much for your help thus far, I've got another question,
I'm working on a polyphonic synth using a Teensy 4.1 w/ Audio Adapter as the brains, and I'm putting together the code for it currently, using the github...
Removed all circuitry except for the teensy audio shield (which is soldered on and doesn't connect to the bottom half of the 4.1 anyhow), there shouldn't be any path to ground from the pins in question, I probably just damaged it somehow, ty all!
Basically what it says on the tin, I'm only reading a voltage of about 0.2v on pin 33 and only 0.02v on pin 34 of my teensy 4.1
at first i suspected i may have simply made a bad solder joint, but after reflowing and a generous amount of flux I...
Hello everyone! I've been working on a polyphonic synth based around the Teensy and its audio shield & library
while trying to set up unit tests for each of the individual pieces, I seem to be hitting a wall.
Here is a link to all of the files...