We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is the required I2S configuration to set the channels correctly:
AudioConnection_F32 patchcord1(i2s_in, 1, inputMixerL, 0); //Left-Front Mic AudioConnection_F32 patchcord2(i2s_in, 0, inputMixerL, 1); //Left-Rear Mic AudioConnection_F32 patchcord3(i2s_in, 3, inputMixerR, 0); //Right-Front Mic AudioConnection_F32 patchcord4(i2s_in, 2, inputMixerR, 1); //Right-Rear Mic
Here is the desired I2S configuration:
AudioConnection_F32 patchcord1(i2s_in, 0, //Front-Left AudioConnection_F32 patchcord2(i2s_in, 1, //Rear-Left AudioConnection_F32 patchcord3(i2s_in, 2, //Front-Right AudioConnection_F32 patchcord4(i2s_in, 3, //Rear-Right
To achieve this, the front and rear mic need swapped (which means changing what the select lines are connected to). See changes in RED.
The text was updated successfully, but these errors were encountered:
Refer to the following issue for relabeling the Left/Right ports on the EarPiece Shield PCB
Sorry, something went wrong.
No branches or pull requests
Swap Front and Back Mics
Here is the required I2S configuration to set the channels correctly:
Here is the desired I2S configuration:
To achieve this, the front and rear mic need swapped (which means changing what the select lines are connected to). See changes in RED.
The text was updated successfully, but these errors were encountered: