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.

ADS7280

Other Parts Discussed in Thread: ADS7280

Hi...

 

I have configurate the ADS7280 with the simple code below:

 

SEL_AD = 1;          //FS/CS
delay_us(1);
START_AD = 1;    // CONVST
delay_us(1);
SCK = 0;
delay_us(30);
SEL_AD = 0;
delay_us(30);
SDO = 1;
delay_us(10);
for(i=0;i<4;i++){
     SCK = 1;
     delay_us(30);
     SCK = 0;
     delay_us(30);
 } 

SEL_AD = 1;

This configution is for load CFR with default mode, but when I read the CFR I recieve this bites: 0x0DFC. I think that the result is wrong. but I dont know why.....