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.

PaulM's OMAP35x TX/RX DMA example issue

Hi All,

When i tried 's tx/rx DMA example, i found the RXBUFF1/2/3 contents always equals to TXBUFF2, seems TXBUFF1 contents never send to RXBUFF1 or 2 or 3. does this is normal? i enabled the CHAN15 loop chain as following

-----------------------

//dmaEnableChannel(CHAN14);



// For this example, disable the automatic linking of channel 15 to channel 14 so that it will be easier to set a breakpoint
// and view the changes to the RX buffers. Channel 14 will be enabled later as part of a continuious loop.

dmaSetChannelLink(CHAN15, CHAN14, EN_CHAN_LINK);
dmaEnableChannel(CHAN14);

---------------------------

Thanks