Sorry, I am not much of an Audio guy.
But a couple of quick searches in source files may give you your answers.
Example I did a global search in sublime text for i2s_quad
And with that found the file input_i2s_quad.cpp
Code:
void AudioInputI2SQuad::begin(void)
{
...
#elif defined(__IMXRT1062__)
const int pinoffset = 0; // TODO: make this configurable...
AudioOutputI2S::config_i2s();
I2S1_RCR3 = I2S_RCR3_RCE_2CH << pinoffset;
switch (pinoffset) {
case 0:
CORE_PIN8_CONFIG = 3;
CORE_PIN6_CONFIG = 3;
IOMUXC_SAI1_RX_DATA0_SELECT_INPUT = 2; // GPIO_B1_00_ALT3, pg 873
IOMUXC_SAI1_RX_DATA1_SELECT_INPUT = 1; // GPIO_B0_10_ALT3, pg 873
break;
case 1:
...
So looks like pins 6 and 8 are of interest.
And in the output_i2s_quad.cpp I see
Code:
void AudioOutputI2SQuad::begin(void)
{
...
#elif defined(__IMXRT1062__)
const int pinoffset = 0; // TODO: make this configurable...
memset(i2s_tx_buffer, 0, sizeof(i2s_tx_buffer));
AudioOutputI2S::config_i2s();
I2S1_TCR3 = I2S_TCR3_TCE_2CH << pinoffset;
switch (pinoffset) {
case 0:
CORE_PIN7_CONFIG = 3;
CORE_PIN32_CONFIG = 3;
break;
case 1:
...
Looks like pins 7 and 32 might be of interest...
But again I am only guessing.