Hi,
I use the edma3_lld driver and I have a trouble to request more than one QCMA channel.
If I modify the edma3_drv_bios_dm6437_st_sample.pjt (comes with the driver) to request two QDMA channel, the second request fail with the error -133.
I just add these lines in the qdma_test after the first request:
qCh2Id = EDMA3_DRV_QDMA_CHANNEL_ANY;
qTcc2 = EDMA3_DRV_TCC_ANY;
result = EDMA3_DRV_requestChannel (hEdma, &qCh2Id, &qTcc2,
(EDMA3_RM_EventQueue)0, &callback1,
NULL);
return -133 in the result
I use the driver EDMA3 LLD 1.05. How can I use more than one channel ?
Thank's
Guy