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.

[参考译文] TAS5805M:设置 TAS5805M 以进行单声道操作

Guru**** 2933120 points

Other Parts Discussed in Thread: TAS5805M

请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/audio-group/audio/f/audio-forum/1650498/tas5805m-setting-up-tas5805m-for-mono-operation

器件型号: TAS5805M

在 TAS5805M 中进行设计感到遗憾。

我花了一天时间尝试让它发挥作用。   我已请求访问 Pure Path Console、但没有回复。  搜索 fourms 我有到目前为止下面的代码,但它没有得到 fing 的东西工作.

// Book 0、page 0
ESP_ERROR_CHECK (TAS5805_Write (0x00、0x00));
ESP_ERROR_CHECK (TAS5805_Write (0x7F、0x00));
ESP_ERROR_CHECK (TAS5805_Write (0x00、0x00));

//配置时 Hi-Z
ESP_ERROR_CHECK (TAS5805_Write (0x03、0x02));
vTaskDelay (PDMs_to_ticks (5));

// BD 调制、768kHz 开关
ESP_ERROR_CHECK (TAS5805_Write (0x02、0x00);

// D 类环路带宽 175kHz
ESP_ERROR_CHECK (TAS5805_Write (0x53、0x60));

/*
* 10%音量=–20dB。
* TAS5805 DSP 音量系数= 0x000CCCCD。
*/

ESP_ERROR_CHECK (TAS5805_Write (0x00、0x00));
ESP_ERROR_CHECK (TAS5805_Write (0x7F、0x8C));
ESP_ERROR_CHECK (TAS5805_Write (0x00、0x2A));
ESP_ERROR_CHECK (TAS5805_Write4 (0x24、0x000CCCCD));//左侧
ESP_ERROR_CHECK (TAS5805_Write4 (0x28、0x000CCCCD));//右

//返回到 Book 0,第 0 页
ESP_ERROR_CHECK (TAS5805_Write (0x00、0x00));
ESP_ERROR_CHECK (TAS5805_Write (0x7F、0x00));
ESP_ERROR_CHECK (TAS5805_Write (0x00、0x00));

//播放
esp_error_check (TAS5805_Write (0x03、0x03));