Dear experts:
I tried to imitate the ipc_spi_master/ipc_spi_slave sample code in mcusw.
For this example, as long as the SPI packet is sent once, the Osal_delay() function must be called to wait for timeout value to initiate next transfer. Allow some time for slave to compose the response.
This delay time will cause the transmission to be too slow during continuous transmission.
If I don’t need the slave to respond to any data, how can I modify it so that there is no delay time after the master transmits?
/* Wait for timeout value to initiate next transfer.
* Allow some time for slave to compose the response */
Osal_delay(testParams->timeOutValue);