Hello all,
The device is 32bits so it should read 32bit SPI device at one cycle ? I am trying to read a peripherial send it to some ethernet port.
Hello all,
The device is 32bits so it should read 32bit SPI device at one cycle ? I am trying to read a peripherial send it to some ethernet port.
Question is simple ;
Can Arduino DUE read a 32bit SPI device in one-cycle ?
Can Arduino DUE read a 32bit SPI device in one-cycle ?
Yes, use SPI.transfer() with SPITransferMode set to SPI_CONTINUE for the first three bytes and to SPI_LAST for the fourth.
Thanks.