Skip to content
New issue

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

Swap Front/Back Select lines #12

Open
eyuan-creare opened this issue Jun 22, 2020 · 1 comment
Open

Swap Front/Back Select lines #12

eyuan-creare opened this issue Jun 22, 2020 · 1 comment

Comments

@eyuan-creare
Copy link
Collaborator

Swap Front and Back Mics

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.
image

@eyuan-creare
Copy link
Collaborator Author

Refer to the following issue for relabeling the Left/Right ports on the EarPiece Shield PCB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant