Part Number: MSP432P401R
Tool/software: TI-RTOS
I'm using MSP432, Code Composer Studio & TI-RTOS.
I have succeeded in communicating with the chip via SPI.
However, I have a length problem.
I can SPI_transfer count until 9.
If the count is 10 or more, communication is not possible (response is abnormal).
testTxBuffer[0] = 0x30;
masterTransaction.count = 10;
masterTransaction.txBuf = (void *)testTxBuffer;
masterTransaction.rxBuf = (void *)testRxBuffer;
Am I doing something wrong?