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