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.

ADS131E08EVM-PDK

ADS131E08EVM是否可以不連接MMB0來單獨使用?

我現在測試單獨使用ADS131E08EVM由外部MSP430的SPI去讀取ID皆沒有讀取到任何數值。

Board Power:3.3V DVDD、3VAVDD

SPI Interface:4-wire interface with SCLK,CS, SOMI and SIMO. ADS131E08EVM is SLAVE device.透過J1與外部MSP430連接的腳位包含CS(Pin7)、SCLK (Pin3)、DIN(Pin11)、DOUT(Pin13)、GND。

主程式大致如下:

SCLK=2MHz

  PWDN_HI;          //PDWN=RESET=1 wait for 1s
  RESET_HI;
  delay_ms(1000);
 
  RESET_LO;        //system reset wait for 18 tclks
  delay_us(1);
  RESET_HI;
  delay_us(100);

程式依序傳送SDATAC (0x11)--- STOP (0x0A)--- READ ID(0x20 0x00 0x00)。