Forum Discussion
Altera_Forum
Honored Contributor
15 years agoI would look at the tutorials, they should port fairly easily to other boards. For example describing a DMA transfer as an array copy inside of a for loop would be a good start. Something like this:
for (i = 0; i < TRANSFER_LENGTH_IN_WORDS; i ++) { dest_array = source_array; }