I'm learning to use SPI communication to read from two separate MAX31865 RTD temperature sensor chips. They have a DRDY (data ready) output pin on the MAX31865. Do I need to read that pin on the ATMEGA or can I just leave it not connected like so many other SPI devices. Here's my setup from the ATMEGA:
Chip Select Pins:
ADC6: SS1 to IC1-CS
ADC7: SS2 to IC2-CS
Standard Uno ICPS/SPI port:
D11: MOSI to IC-SDI
D12: MISO to IC-SDO
D13: CLK to IC-SCLK
What to do with these from the IC's? Do I even need them?
DRDY1?
DRDY2?
Thank you for pointing out the wrong CS pins. I suppose I can easily switch those in my design. Do the other analog pins (0-5) still double as digital pins, like the PDIP package?
Sorry, it just wasn't clear to me by the wording "them." I thought you were only talking about the analog pin problem. So, to make sure I have your answer clearly, I'm assuming you mean not to use the DRDY output of the MAX chip and just wait for it's data output upon sending the CS signal (depending on SPI mode?). Correct me if I'm wrong... thanks again.
Got it. I've used SPI stuff before but never encountered DRDY and wasn't sure if it was required for this chip's operation. I'll leave it disconnected.