Raspberry Pi 上的 spidev 未使用 DAC7562EVM 提供任何输出

spidev on Raspberry Pi not giving any output with DAC7562EVM

我正在尝试使用 Raspberry Pi 控制 DAC7562EVM。我已连接:

信号 - PI - TI - 信号

MOSI - P1-19 - J2-11 SDI

SCLK - P1-23 - J2-3 SCLK

CEO - P1-24 - J2-1 /SYNCO

GND - P1-25 - J2-4 DGND

此外,JP1 引脚用于将 /LDAC 接地。

到目前为止,我已经在 SDI、SCLK 和 /SYNC0 引脚上使用了示波器,可以验证同步引脚不会中断数据传输。另外,我可以看到 DAC 正在接收 8 位序列。

我一直在使用的代码如下:

import spidev
spi = spidev.SpiDev()
spi.open(0,0)
spi.mode = 2
spi.max_speed_hz = 1000000
spi.bits_per_word = 8

spi.xfer2([0x20,0x0,0x3]) # Powers on all DACs
spi.xfer2([0x38,0x0,0x0]) # External reference
spi.xfer2([0x30,0x0,0x4]) # /LDAC is low
spi.xfer2([0x17,0x66,0x60]) # Output of 2 V to DAC-A and updates all registers (Vref is 5 V)

spi.close()

我不明白如何判断消息正在发送,但我没有从 DAC 获得任何可辨别的输出。我错过了什么?

DAC7562 数据表:http://www.ti.com/lit/ds/slas719e/slas719e.pdf

DAC7562EVM 手册:http://www.ti.com/lit/ug/sbau183a/sbau183a.pdf

我发现这个答案对 SPI 模式有帮助,但无法实现其他指令:

我在 TI 评估板上将 SYNC0 引脚从 J2​​-1 更改为 J2-9。