Yes, the input data sampling can be done separately at different frequency. It was about reducing the latency of 128/44100 sec (= the playing time of one audio data block). Perhaps this might be short enough and I...
I guess what I said above was not clear enough. Teensy is sampling (non-audio) input data from some other gpio pins, and the desired audio output is being generated from that input data: roughly, audio_output =...
I guess the first is more likely. Teensy 4 can handle a lot higher frequency interrupts (eg every 1/44100 sec), just by using IntervalTimer straightforwardly. 64/44100 sec is not difficult at all. Instead, something...
Hi,
I am trying to use AudioOutputMQS of the audio library, with a smaller value of AUDIO_BLOCK_SAMPLES. I changed 128 to 64 in the line
#define AUDIO_BLOCK_SAMPLES 128
of AudioStream.h. Then the sound...