Hello ,
I want to ask these questions!
1)If we have enable interrupts from ps to pl does it change the fact that we put
dma.sendchannel.wait()?
As i have understand wait method is something like polling techinique but when we enable interrupts there is no reason to have wait.I am not sure although.
2)If we must put wait() and we have multiple dma transactions do we write
dma_one.sendchannel.wait()
dma_two.sendchannel.wait()
.
.
dma_one.recvchannel.wait()
etc?
Cause wait() method consume a lot of software time?