Updated 8x8 and 16x16 audio

Does the xlr board have enough gain for a dynamic mic(SM58)? I’d like to make a mixer for my mom. And use another board for possibly a powered speaker or monitor. So that would only need a balanced and unbalanced input.
 
The XLR board should have *close to* enough gain. The PGAs have 60dB of gain, so a vocalist with a strong voice will be fine, a whisperer not so much!

I haven't yet tested this in practice - the XLR connectors haven't arrived yet!

Most of my mics are condenser, but I have some Behringer XM1800 dynamics so they should do OK for testing even if they're not as sweet as SM58's. I can work out absolute sensitivity using my ECM8000 measuring mic, if I dummy up a phantom powering arrangement.

I'll post the results here and on the repo when they're available.
 
All good news … let’s hope the new boards work as intended!

Took a look at your linked repo, nice job on the documentation. Obviously it’s all a work in progress, but should there be a control driver one too? I was looking at your figures for CPU use, which seem high; this may be because you’re multiplying the AudioProcessorUsageMax result by 100, which is not applicable for the Teensy 4.x library (despite Paul banging on about maintaining backwards compatibility for any changes, he didn’t in this case, and also hasn’t documented it).
 
Jonathan,

Yes, there will be a separate driver repo linked to the hardware one (control_TLV320AIC3104). I'll move the driver doco across to it when it's there.

The mux code is incorporated, as Rob Tillaart's excellent library for the PCA9548 series was far more extensive than was required to control the mux in this instance.

I'm loath to release code until its properly tested on the final hardware.
 
Thank you! Looks very comprehensive and well-commented and documented, so it should be easy to use and figure out if (when) I do something wrong!

I assume the TDM objects are only needed pending Teensyduino 1.60, which should have all the (known) TDM bugs fixed? There’s a few items in there I don’t recognise and may be unused, but that’s to be expected in development code. If changes are needed then I’m happy to roll them into my multi-TDM, if you like, then the eventual TD1.61 can just have that plus your control suite for full support of your hardware.
 
I've uploaded the example files.

The 16-bit DMA-audio buffer data copying may not be required. I wrote it before I found the bug in the 32-bit code. The example files have no argument in the constructor, so I guess the code is unused .. it's been 6 months since I finished work on the driver.

The critical fix is line 105 in the input and the same code in the output. As you say, these should be fixed in 1.60.

I did have some code in there for inverting BCLK, but I intended to remove it if I haven't. I went for hardware inversion, so that the standard (fixed) TDM driver would work OOB.
 
Back
Top