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.

ADS8699: basic adc conversion read

Part Number: ADS8699


Tool/software:

Hi,

I am preparing an SPI control for the ADS8699 and would like to ask for a minimum command sequence to read out ADC data after the reset state w/o any further configuration. My understanding is that it should be sufficient to simply send this from the host

CS low

byte firstByte = SPI.transfer (B00000000);
byte secondByte = SPI.transfer(B00000000);
byte thirdByte = SPI.transfer(B00000000);
byte fourthByte = SPI.transfer(B00000000);

CS high

and collect whats coming on the SDO line back to the host during the transmission. Is that correct?

Thanks and kind regards,

Jan