This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

uDMA peripheral-to-peripheral Transfer

Other Parts Discussed in Thread: TM4C1294NCPDT

Hello,

I realize that the datasheet does not list the ability to make peripheral-to-peripheral transfers, but it's not clear to me why that is.  Why can I not have it transfer from, for example the RX FIFO of the SSI to the TX FIFO of the UART.  why doesn't the following initialization code work?

	uDMAChannelTransferSet(twe_QSSI_COMM_RX_UDMA_CHANNEL | UDMA_PRI_SELECT,
						   UDMA_MODE_BASIC,
						   (void *)(twe_QSSI_COMM_BASE + SSI_O_DR), (void *)(TWE_UART_COMM_BASE + UART_O_DR),
						   4);

I am using the tm4c1294ncpdt.

Regards,

Curtis