Hello,
I am using a LDC1000 in a custom application (broke USB part from EVM apart, soldered connector) and have similar issues as readable in this thread: http://e2e.ti.com/support/data_converters/inductive-sensing/f/938/p/292151/1018937.aspx#1018937
Sadly the solution does not fit in my case. I made sure, I have VIO on 3V, the same digital supply voltage my STM32 gets. Also I can see all communication works fine except the SDO line (just stays on GND).
I supplied a 8MHz LDCKL and also tried a 2MHz clock.
Nothing changes.
Here is my init sequence:
ldc1000_write_cmd(LDC1000_CMD_RPMAX, TEST_RPMAX_INIT); ldc1000_write_cmd(LDC1000_CMD_RPMIN, TEST_RPMIN_INIT); ldc1000_write_cmd(LDC1000_CMD_SENSORFREQ, 0x94); ldc1000_write_cmd(LDC1000_CMD_LDCCONFIG, 0x17); ldc1000_write_cmd(LDC1000_CMD_CLKCONFIG, 0x00); ldc1000_write_cmd(LDC1000_CMD_INTCONFIG, 0x02); ldc1000_write_cmd(LDC1000_CMD_THRESHILSB, 0x50); ldc1000_write_cmd(LDC1000_CMD_THRESHIMSB, 0x14); ldc1000_write_cmd(LDC1000_CMD_THRESLOLSB, 0xC0); ldc1000_write_cmd(LDC1000_CMD_THRESLOMSB, 0x12); ldc1000_write_cmd(LDC1000_CMD_PWRCONFIG, 0x01);
Thanks for any advice, I appreciate it.
Stefan