Tool/software:
Hi,
I'm using SPI to transfer data.
Below, SPI setting
-------------------------------
Mode : SPI_MASTER
pinMode : SPI_PINMODE_4PIN_CS
dataSize : 16bit
frameFormat = SPI_POL0_PHA1
shiftFormat = SPI_MSB_FIRST
DMA : disable
csHold = 1
eccEnable = 1
transferMode = Blocking
------------------------------
When I send data and then receive it for verification, I observe that the data is swapped in 8-bit/8-bit units every 16 bits.
This issue does not occur when I set the data size to 8 bits and transmit the data.
I am curious if this data swapping is intentional and would like to know how to send the data without it being swapped.
Thanks.