Hi
I am working on DM648, in my project, I found edma3init() and CPIS_init() has conflict.
result = edma3init();
then, I initialize the vicp as follow:
vicpInit.cacheWbInv = (Cache_wbInv) cacheWb;
vicpInit.staticDmaAlloc= 1;
vicpInit.maxNumProcFunc= 1;
vicpInit.memSize= CPIS_getMemSize(vicpInit.maxNumProcFunc);
vicpInit.mem= memAlloc(vicpInit.memSize);
if (CPIS_init(&vicpInit)== -1) {
printf("\nCPIS_init error\n");
exit(0);
}
the result is "CPIS_init error", i dont know why.
thanks.