Tool/software:
Hello,
I am trying to verify SPI communication with the DRV8908-Q1 by reading the DEVICE_ID register. According to the datasheet, this register is located at address 0x02
and is read-only. I understand that the expected default value is 0x81
.
I'm sending the SPI read command as follows (using 8-bit transfers):
UINT8 spi_tx_data[2] = {0x41, 0x00}; // 0x41 = (0x02 << 1) | 1 for read
could you please help me with following
1. is the commant format correct for reading register 0x02;
2. are there are any specific conditions?
thanks
Arun