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.
我正在使用连接到 FPGA 的 ADC3444。 我对 SPI 配置感到困惑、如所示。
我使用来自处理器的标准 SPI (Zynq PS)、问题是我们应该如何准备序列、首先是 MSB、或者先是 LSB。 例如、如果我们要读取该程序、则地址为0x0A;
S1=无关;
S2=0x0A;
S3=0b11000000;
我们应该如何发送位?
SPI_SEND (S1);
SPI_SEND (S2);
SPI_SEND (S3);
或者、用户应该完全反转全部三个 S1、S2、S3、就像这样
SPI_SEND (反相(S3));
SPI_SEND (反相(S2));
SPI_SEND (反相(S1));
谢谢! 我们将感谢您提供任何意见。
好的、回答我自己的问题。
在 MSB 优先 SPI 主器件的情况下、使用以下序列发送字节。
SPI_SEND (S3);
SPI_SEND (S2);
SPI_SEND (S1);
您好、Hai、
感谢您发布 您的解决方案。
此致、
Dan