SPI Communication SPC58EC MCU
Hello,
Currently I am working with SPI communication in SPC58EC DISP Discovery board. I wanted to evaluate communication between MS-SL and SL-MS. I have configured SPID1 as master and SPID2 as slave. I was able to send data from master to slave using below functions.
spi_lld_receive(&SPID2, TRANSFER_BUFFER_SIZE, &spihandler_rx_fifo);
spi_lld_send(&SPID1, TRANSFER_BUFFER_SIZE, transmitBuff);
But how can I transmit data from slave to master ? Can I use the same functions for it or should I use spi_lld_exchange?
Thanks and regards.
