Hello, Eggers1
1. In my project, FGPA indeed generates an interrupt and SDMA reads the data from FIFO
2. The data read in the above figure is already data from the FPGA's FIFO (0x3A 0x0D)
3. The specific code is as follows
SDMA_PrepareTransfer(&transferConfig, 0x50000040, (uint32_t)destAddr, 4,
4, 4, 1024, 0, kSDMA_PeripheralTypeMemory,
kSDMA_MemoryToMemory);
I can read the data using the above code (0x3A 0x0D)。
SDMA_PrepareTransfer(&transferConfig, 0x50000040, (uint32_t)destAddr, 4,
4, 4, 1024, 0, kSDMA_kSDMA_PeripheralNormal,
kSDMA_PeripheralToMemory);
Using the above code, the program will freeze。
am I using these two parameters correctly?
The EIM interface is used between FPGA and IMX.