HW: RT1170EVK
Target: move the RESFIFO from LPADC1 to dstAddr
Configuration in eDMA:

Configuration in LPADC1

start LPADC1 per SW in Main()
LPADC_DoSoftwareTrigger(LPADC1, 1U);
The problem is, the callback from eDMA function was never called in my application. Why?
So far as I understand, I trigger the LPADC1 per SW, after the watermark is running out, the LPADC1 trigger the DMA request, then the DMA get the result from LPADC1->RESFIFO, because I set the Minor and Major both as 4-Bytes, the eDMA should activate the callback after 4-Byte is transfered, right? where do I do wrong?
p.s. I extra tested the eDMA alone with SW trigger (EDMA_StartTransfer(&DMA0_CH0_Handle);), the callback function worked pretty well. The eDMA itself has no problem.