Hi,
I am using TAS5766M in my project and have been getting myself familiarized with the register settings on TAS5766MRMTEVM demo board. Using the PurePath Console 3, I have been able to get the board to work and play an audio stream from the USB port.
I also connected a Total Phase Aardvark I2C/SPI dongle to SDA/SCL lines on the console and was able to directly write to I2C registers of TAS5766M chip to mute and control the volume.
However, when I tried to send the following commands over Aadrvark I2C to get the amp to start in default mode , I did not hear any sound.
#-------------------------------------------------
# Reset
#-------------------------------------------------
# Select Page 0
w 98 00 00
# Set the device into Powerdown
w 98 02 11
# Reset Device
w 98 01 11
#-------------------------------------------------
# Sleep
#-------------------------------------------------
# Select Page 0
w 98 00 00
# Set the device into Standby
w 98 02 10
#-------------------------------------------------
# Select DSP Mode 1
#-------------------------------------------------
# Select Page 0
w 98 00 00
# DSP Program = Mode 1
w 98 2B 01
#-------------------------------------------------
# Wake
#-------------------------------------------------
# Select Page 0
w 98 00 00
# Wake from Standby
w 98 02 00
Am I missing anything?