I am developing using an MCU and the TAS2563.
I can communicate with the TAS2563 over i2c without any issues. I am able to get output from the speakers when I hardwire my MCU code to the configuration below, although it isn't tuned correctly and sounds terrible:
{ 0x00, 0x00 ), // PAGE 0
{ 0x7f, 0x00 }, // Book 0
{ 0x02, 0x0c }, // POWER_CTL, activate
{ 0x03, 0x02 }, // PB_CFG1, 8.5db
{ 0x07, 0x02 }, // TDM_CFG1, start of frame to time slot 0 offset
{ 0x08, 0x70 }, // TDM_CFG2, 16-bits, stereo downmix (L+R)/2
When I use the output from PPC3 generated by our audio engineer, there isn't any sound. Can you provide documentation for what registers I am expected to initialize independently of the PPC3 configuration? Or, is the PPC3 configuration supposed to handle everything and the audio engineer needs to make some additional changes?

