Audio
Audio copied to clipboard
Teensy Audio Library
The current export format of the Audio System Design Tool cannot be used for class member variables. Changing the format slightly allows it to be used both as class member...
Pressing the enter key while changing the name of a node in the Audio System Design Tool causes a page reload. This small fix prevents the page reload.
I posted a description of the improvements in the forum: https://forum.pjrc.com/threads/58539-Teensy-4-SPDIF-input-ASRC/page4
This allows you use use more than one TX or RX pin in TDM mode, allowing for up to 64 channels of record or playback data This fix goes hand-in-hand...
This PR adds a setWire() function to the AudioControlSGTL5000 class, allowing any available I²C bus to be selected to control an SGTL5000 audio shield. Either a reference to an existing...
`memcpy_tdm_tx()` waas copying twice as much data as it should, overflowing the output buffer. Now does the same as `output_tdm`, which appears to be correct.
void AudioEffectGranular::beginFreeze_int(int grain_samples) { __disable_irq(); grain_mode = 1; if (grain_samples < max_sample_len) { freeze_len = grain_samples; } else { freeze_len = grain_samples; } The assignment in else clause should be...
I've been using the wav2sketch code to create some audio samples for my Dalek project. As I wanted to run it on Windows I made some changes so it can...
Fixes `headphoneSelect`: we are currently writing 1 to select DAC and 0 to select LINEIN. However, SGTL5000 datasheet (page 39) says the opposite: Select the headphone input. 0x0 = DAC...
### Description I am trying to use the beta SdFat library so I can connect my SD Card to the Teensy 4.1 with the builtin SD card slot. Uses SDIO...