Someone out there ever tried to write one of the SPI registers via the WaveVision DLL?
I'd like to write e.g. the Q-Channel Offset register of the ADC12D1800RFRB.
If I understand ...\WaveVision5\hardware\scripts\adc10d1000_xc4vlx25_adc12d1800rfrb.reg.xml correctly, the adress of the Q-Channel Offset register is "0x0a" on the "spi" address space.
So I try the following:
const WvWord q_ch_ofs_addr = 0x0a;
WvWord q_ch_ofs_value = 123;
WvNewestHardwareWrite(0,0,WV_DEBUG_ACCESS_SPI,0,0,8,q_ch_ofs_addr,16,q_ch_ofs_value);
...with no success :-(
Anybody any ideas? Thanks a lot for your help!