How can STM32F769 DMA controllers access the DTCM?
I am working with the STM32F769 microcontroller and I can see that a lot of DMA buffers are placed in DTCM in the source code I'm working with. Looking at the data sheet ( https://www.st.com/resource/en/datasheet/stm32f765bi.pdf ) page 20 I don't see a bus between the DMA controllers and the DTCM. Apparently it works so there must be a way for the DMA data to go to/from the DTCM, but how? Is it, in general, recommended to place DMA buffers in DTCM? I mean, just because it's close to the CPU doesn't mean it's close to the DMA peripheral.