when I use EDMA3_DRV_requestChannel to alloc a dma channel, but I only get 9 channels to use,why? I am working in DM6446, it has 64 DMA channels.
edma_tcc1 = EDMA3_DRV_TCC_ANY;
edma_ch1Id = EDMA3_DRV_DMA_CHANNEL_ANY;
while(1)
{
if (result == EDMA3_DRV_SOK)
{
result = EDMA3_DRV_requestChannel (hEdma, &edma_ch1Id, &edma_tcc1, (EDMA3_RM_EventQueue)0,
NULL, NULL);
}
}