Hi,
I'm working on the ADS1220 with STM32 integration through SPI interface. I'm trying to read thermocouple temp like this
spi.select(mode1) -> CS made as OUTPUT low
spi.write(0x1F) -> (1F means RDATA command from ADS1220 data sheet)
I used below command to read buffer spi.Read(buff,0x03)
but my buff[0] always shows same value (0x35).
so this value is not getting updated. Am I missing any configuration settings like IDAC current or IDAC routing?