Hi Experts,
My project need to support two codec as input. So AD0&AD1 of CC2640R2 PINs will be configured to I2S_SDx_INPUT. I have a question for SD0 & SD1 input order and format. As I know if only one pin as input eg SD0 pin, the 16bit stereo input format is L_data16 then R_data16, when SD1 also was configured to input how about format , is it show as SD0 L_data16 - SD0 R_data16 - SD1 L_data16 SD1 R_data16? Thanks!
/* Default I2S parameters structure */
const I2S_Params I2S_defaultParams = {
....
.SD0Use = I2S_SD0_INPUT, /* SD0Use */
.SD1Use = I2S_SD1_INPUT, /* SD1Use */ // I2S_SD1_OUTPUT
.SD0Channels = I2S_CHANNELS_STEREO, /* Channels activated on SD0 */
.SD1Channels = I2S_CHANNELS_STEREO, /* Channels activated on SD1 */
...
.custom = NULL, /* customParams */
};
Best regards,
Alex