I am trying to figure out how the eDMA transfers data when the SSIZE does not equal the DSIZE.
If SSIZE > DSIZE, does the DMA break the read into multiple writes? Is the data order preserved as well? So if I had 0xDEADBEEF as my source data, and I have different combinations of DSIZE and SSIZE, will the result be the same if DSIZE = SSIZE.
There are multiple cases that I want to know about whether they will achieve the same result. SSIZE(0) and DSIZE(2), SSIZE(1) and DSIZE(2), SSIZE(2) and DSIZE(1), SSIZE(2) and DSIZE(0), etc. Will these combinations produce the same result as SSIZE(2) and DSIZE(2)?