Hi,
I'd like to expand the CSL example provided for the C6457 that performs loopback mode on the McBSP using the DMA to transfer data. When I run the example, it works great. When I try to perform a manual trigger, the interrupt no longer fires.
I am using the C6457, CCS v.5.1, and the PDK that comes with MCSDK 1.08, which includes the CSL examples.
e.g.
// Start TI supplied code.
WAIT_FOR_1_CLK;
/* wait for Transmit complete Interrupt */
while (!intFlag);
/* wait for Transmit complete Interrupt */
while (!rxintFlag);
// end TI supplied code.
// Added to cause manual trigger of data.
CSL_edma3HwChannelControl(hChannel,CSL_EDMA3_CMD_CHANNEL_SET,NULL);
what am I missing? Do I need to reload the channel information?
Thanks in advance.
Bill