Can anyone confirm that AudioInputI2S works with the Teensy 4.0?
It does not work for me. I can play sounds out via AudioOutputI2S but I can't bring audio in using AudioInputI2S.
My Setup:
I wired up the Teensy Audio Adapter to a Teensy 4.0 using the pin remapping described by Paul (https://www.pjrc.com/store/teensy3_audio.html). Below is a picture of my wiring diagram that I made for myself.

Below is a picture of it actually wired.

Software:
I'm running Arduino 1.8.9 with Teensyduino 1.4-beta7. I'm running the ToneSweep and the PassThroughStereo examples from the Teensy Audio library.
Symptoms:
ToneSweep runs fun. PassThrougStereo, however, produces no audio at the output (yes, I am injecting audio into the system). Most curiously, going back to ToneSweep, if I simply add a line instantiating an AudioInputI2S object, it breaks ToneSweep:
Code:
AudioInputI2S audioInput; //I added this
AudioSynthToneSweep myEffect; //this was here
AudioOutputI2S audioOutput; // audio shield: headphones & line-out
// The tone sweep goes to left and right channels
AudioConnection c1(myEffect, 0, audioOutput, 0);
AudioConnection c2(myEffect, 0, audioOutput, 1);
Note that I don't need to connect audioInput to anything; simply including the line in the sketch prevents the ToneSweep sketch from making any audio. It compiles fine. It simply doesn't output any audio.
Has anyone confirmed that AudioInputI2S works with Teensy4?
Chip