Tool/software: Code Composer Studio
hello,
I have to use EDMA3 at my project , first i trying one example project ... but my code is not working properly means the data is not txer... i do not understand what is problem..but i do not have errors
i used CSL funtions ..
i wrote code like
CSL_edma3Init(&context)
hModule = CSL_edma3Open(&edmaObj, instNum, NULL, &status);
hChannel = CSL_edma3ChannelOpen(&chObj, instNum, &chAttr, &status);
CSL_edma3MapDMAChannelToParamBlock (hModule, channelNum, 2);
hParam = CSL_edma3GetParamHandle(hChannel, 2, &status);
/* Setup the parameter entry parameters ( buffer) */
CSL_edma3ParamSetup(hParam,&myParamSetup)
/* Manually trigger the channel */
CSL_edma3HwChannelControl(hChannel,CSL_EDMA3_CMD_CHANNEL_SET,NULL)
//globla region and i did not use any link and chian
source and destinations .. i taken global variables (256 bytes)
*And how to control the EDMA3 to GPIO output pins...
please give me suggestions...