Hello.
I'm trying to copy a data from core0 l2 to core1 l2 using example in \pdk_C6678_1_0_0_11\packages\ti\csl\example\edma
when i'm trying to copy from core0 l2 to core0 l2, it works well.
but for core to core mem copy, i think it is not working well.
i changed the code
myParamSetup.srcAddr = (Uint32)srcBuff1 + 0x10000000;;
myParamSetup.dstAddr = (Uint32)dstBuff1 + 0x10000000; // core0 l2->core0 l2;
->
myParamSetup.srcAddr = (Uint32)srcBuff1 + 0x10000000;;
myParamSetup.dstAddr = (Uint32)dstBuff1 + 0x11000000;;// core0 l2->core1 l2;
and run.
when i clicked the suspend button, pc is always in here.
do {
CSL_edma3GetHwStatus(hModule,CSL_EDMA3_QUERY_INTRPEND,®ionIntr);
} while (!(regionIntr.intr & 0x1));
for core to core mem copy, is there a another setting?
thanks.