2021-08-05 12:58 AM
Is caching using DMA while the bitmap is caching in Touchgfx?
Solved! Go to Solution.
2021-08-05 06:46 AM
No, DMA isn't a storage space (of any significant size), so it's not using that.
Looks like it's using SDRAM in this example. Probably uses whatever memory you have set up.
2021-08-05 01:21 AM
You mean the data/instruction cache on AXI in 'F7?
It reads/writes portions of memory autonomously, but it's not the same as what the DMA units do. These reads/writes are completely transparent to the user, no need to configure/start them.
JW
2021-08-05 01:27 AM
I'm actually asking what is used when caching the bitmap.
2021-08-05 01:34 AM
Where? What bitmap?
JW
2021-08-05 01:40 AM
In Touchgfx, I want a bitmap to cache. How does caching read the bitmap and write?
2021-08-05 06:46 AM
No, DMA isn't a storage space (of any significant size), so it's not using that.
Looks like it's using SDRAM in this example. Probably uses whatever memory you have set up.
2021-08-10 08:25 AM
Are you talking about a dynamic bitmap? Your question is not very clear.