You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like my application to setup non-stop continuous DMA transfers until the user hits "CTRL-C"
Target is to capture data all the time and run for a unknown period of time.
Since the time the application should run is unknown, break the DMA transfers to managable chunks of 1 MB
That is:
setup 2 DMA transfers of 1 MB
once the first DMA transfer is completed , setup a third transfer of 1 MB
Keep submitting a new request on completion callback
System setup:
2 RX DMA channels from FPGA to APU
oneway DMA transfers work on both AXI DMA channels.
How would I setup onway transfers to achieve this?
The text was updated successfully, but these errors were encountered:
If I don't miss your question, you can create a thread to do a while loop of oneway transfer.
notice: if you set the last flag of the RX oneway transfer API: True, you would never need the callback function
I would like my application to setup non-stop continuous DMA transfers until the user hits "CTRL-C"
Target is to capture data all the time and run for a unknown period of time.
Since the time the application should run is unknown, break the DMA transfers to managable chunks of 1 MB
That is:
System setup:
How would I setup onway transfers to achieve this?
The text was updated successfully, but these errors were encountered: