Hi All,
When i tried PaulM '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