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.

ADS8688读取采集数据问题

您好,请问每个采集值后面带个xFFF是什么意思,在手册上哪里都提及到?例如,读取AIN0-AIN7的数据,:C83B 0FFF 8E98 1FFF 8006 2FFF 3EE1 3FFF C831 4FFF 8198 5FFF 8206 6FFF 342C 7FFF

读取部分代码: 

for(i=0;i<16;)
 {
  CS0;
  SPI2_ReadWriteByte(AD8688_NO_OP);
  addata[i]=SPI2_ReadWriteByte(0xffff);
  addata[i+1]=SPI2_ReadWriteByte(0xffff);
  CS1;
  Delay_us(1);
  i=i+2;
 }