Hi @PetrS,
Thank you for your answer, but my problem persists. I cannot get the ADC conversion result in the buffer I gave to the BCTU unit.
Let me briefly explain what I did.
I configured ADC-0 and ADC-1:

And also i configured related channels
ADC-0:

ADC-1:

BCTU configurations:


TRGMUX and PIT configurations:


DMA configurations:

Even though I made all these configurations, no data is written to the buffer I gave to DMA.
When I check FIFODR1 with debug, I see the data, but FIFO does not run DMA for some reason.
When I reviewed the driver functions, I saw that bctu turns off the DMA hardware request every time the transfer ends in DMA configurations.
To prevent this, the function named Bctu_Ip_FifoDmaHandler is called within the Bctu_Ip_Bctu0Fifo1DmaComplete function. Thus, the DMA hardware request is refreshed.

What I want to ask here is who calls the Bctu_Ip_Bctu0Fifo1DmaComplete function and when. Could it be related to my problem?
What am I missing so that DMA can work and an interrupt occurs in the DMA major loop?