Hi,
I have some code working on the TMS570 USB development stick, that carries out DMA requests made by SPI1 when sending and reciving data. It uses these DMA request lines (defined in device.h):
MIBSPI1_RX_DMA_REQ
MIBSPI1_TX_DMA_REQ
I would like to carry out a similar approach (that is triggering a DMA transfer on SPI TX / RX) but using SPI3, however, I note that there is no definition, equivalent to those given above for SPI3. I am expecting to find:
MIBSPI3_RX_DMA_REQ
MIBSPI3_TX_DMA_REQ
in device.h, but they are not there.
Can SPI3 make DMA requests to the DMA unit when the data is transmitted and received? If so how can it be done?
Regards,
Steve
PS I am operating the SPI device in compatibility mode i.e. not in multi buffer mode.