I am trying to interface with the TI ADS1298 using the EB013 and am having some trouble. I am starting with the basics by attempting to read the ID Control register (as defined on page 42 of the datasheet http://focus.ti.com/lit/ds/symlink/ads1298.pdf). I am not getting anything back from the device. Here is what I am doing in my flowchart:
1) SPI_Init
2) Create Variable "bytetosend" and assign it to be 32 (0010 0000 binary - read register 0) First opcde - Page 40 of the datasheet
2) delay 10ms
3) SPI_SEND_CHAR bytetosend
4) delay 10ms
5) bytetosend=0 (0000 0000 binary - to read 1 register location) Second opcode - page 40 of the datasheet
6) SPI_SEND_CHAR bytetosend
7) Create variable "bytereceived"

9) delay 10ms
10) LCD_DISPLAY Start
11) delay 10ms
12) LCD_DISPLAY_PrintNumber bytereceived (expected output should be 2, but we don't get anything)
I have tried removing the delays and making them longer and still don't get anything back.
What am I doing wrong? Am I not doing something correctly with the SPI component?
Thank you!
Marty