Hi !
I'm sending data to the TAS2110 on the SDIN pin.
I noticed PPC3 did not export the TDM configuration (TDM_CG)
I intend to use PCM/I2S left justified, single channel , tho I output L and R each frame cycle.
I added these registers to the list.
Looking on the wire, the data looks right.
The audio does not resemble an audible tone and sounds garbled.
Any advice for debugging this?
I'm using zephyr 3.5.0 and here are my settings
i2s_cfg.word_size = 16U;
i2s_cfg.channels = 2U;
i2s_cfg.format = I2S_FMT_DATA_FORMAT_PCM_SHORT | I2S_FMT_DATA_FORMAT_LEFT_JUSTIFIED;
i2s_cfg.frame_clk_freq = 48000;
i2s_cfg.block_size = BLOCK_SIZE;
i2s_cfg.timeout = 2000;
i2s_cfg.options = I2S_OPT_FRAME_CLK_MASTER | I2S_OPT_BIT_CLK_MASTER;