Hi,
My continuity problem got resolved I was using SPI_MODE_BLOCKING earlier but now I am using SPI_MODE_CALLBACK. Now my issue is with the data I am receiving in the slave side cc3220 Rx buffer most of the time it is correct but some times it is getting shifted and reverse data for example:
case 1 : Shifted data
Original data to rx: 0x1514 = 0001 0101 0001 0100
Received data : 0x2A28 = 0010 1010 0010 1000
case 2: Reverse data
Original data to rx: 0x1514 = 0001 0101 0001 0100
Received data : 0x5141 = 0101 0001 0100 0001
Case 3: Reverse of shifted data
original data to rx: 0x1514 = 0001 0101 0001 0100
Received data : 0xA282 = 0101 0010 1000 0010
Can you help me resolving this?
Regards,
Nitin