Part Number: AM3352
Tool/software: Code Composer Studio
Hi
I want to init 2 edma for my project,blow is my code:
EDMA3_RM_Handle app_EDMA_Init(void)
{
EDMA3_DRV_Result edmaResult = 0;
handle_edma_ad = (EDMA3_RM_Handle)edma3init(0, &edmaResult);
if(handle_edma_ad == NULL)
{
Radar_log("edma3init AD failed,error code is %d\n",edmaResult);
return NULL;
}
handle_edma_fft = (EDMA3_RM_Handle)edma3init(2, &edmaResult);
if(handle_edma_fft == NULL)
{
Radar_log("edma3init fft failed,error code is %d\n",edmaResult);
return NULL;
}
}
the first init is successed,but the second innt is failed.
can you help me to resolve this issue.
My PDK version is pdk_am335x_1_0_13 and the EDMA driver version is edma3_lld_2_12_05_30C