HI,
I am using ADS124s08 ADC.
I have interface it with my micro-controller over SPI.
I am able to read the default reg values by generating rreg command and reading the status from my controller.
But not able to read the status of the register if I overwrite the default register value by using wreg command.
I am not sure that the issue is with wreg command or rreg command(rreg command is believed to be working correctly as I am able to read the default status)
My procedure for reading the overwrite rreg is below.
CS=0 // over writing register
send write command = 0x45(overwrite ref register)
send NOP
Send NOP
CS= 1
reading register
CS = 0
send read reg command 0x25(read ref reg)
send NOP
send NOP read data
CS = 1
For reading ADC data I am unable to get the correct data procedure is below
CS = 0;
start commad = 0x08;
CS=1;
read data
CS = 0;
send six NOP's and read data at every nop
CS = 1;
But data read is not correct .
Kindly suggest me how to solve the issue

