This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TAS5634: How to set output channel configuraiton on TAS5534/5538?

Part Number: TAS5634
Other Parts Discussed in Thread: TAS5538, PUREPATHCONSOLE

HI TI,

For TAS 5534 output channel configuration, I want to select channel 3, channel 4 to Front Left , Front Right speaker and channel 1 to subwoofer.

I have reference below:

#if defined(TAS_5538_OUTPUT_CONFIG)
/* DAP out ch definition */
#define TAS5538_DAP_OUT_1 0x00 /* never modify */
#define TAS5538_DAP_OUT_2 0x10 /* never modify */
#define TAS5538_DAP_OUT_3 0x20 /* never modify */
#define TAS5538_DAP_OUT_4 0x30 /* never modify */
#define TAS5538_DAP_OUT_5 0x40 /* never modify */
#define TAS5538_DAP_OUT_6 0x50 /* never modify */
#define TAS5538_DAP_OUT_7 0x60 /* never modify */
#define TAS5538_DAP_OUT_8 0x70 /* never modify */
#endif /* TAS_5538_OUTPUT_CONFIG */

code const unsigned char code reg_output_cofig_CL2[TAS5538_TOTAL_REG_OUT_CONF] = {

///////////channel select 1, 3 to FL/FR ;  channel 4 to subwoofer /////////////////////

( TAS5538_DAP_OUT_2|(TAS5538_DAP_OUT_3>>4) ),
( TAS5538_DAP_OUT_1|(TAS5538_DAP_OUT_4>>4) ),
( TAS5538_DAP_OUT_5|(TAS5538_DAP_OUT_6>>4) ),
( TAS5538_DAP_OUT_7|(TAS5538_DAP_OUT_8>>4) )

 I have referred tas5534_datasheet page84  9.20,  I have no idea  how to set channel 3, channel 4 to Front Left , Front Right speaker and channel 1 to subwoofer.

Could you help with that?

Thanks.

Vick