2018-09-24 12:44 PM
I am developing on the STM32F469i Discovery Board for a design that will have no DRAM.
I need to write to the display using minimal SRAM or, better yet, write directly to the display controller. Is it possible to write bytes directly to the board or to define a small "scratchpad" SRAM area and sequentially write sections of the display without losing previously written segments? Is there an example project showing how this might be done?
2018-09-24 01:40 PM
Does the display's controller indicate that's a viable method? Normally paints from a rather large frame buffer via DSI, as I recall.
2018-09-24 02:00 PM
The controller looks to have it's own memory, I think you can write commands/data over the DSI link. Review how the BSP code configures the registers.
http://orientdisplay.com/pdf/OTM8009A.pdf
The display/touch part# is KM-040TMP-02-A
The demos I think take a minimum of 768KB
This is the display on the F746
https://cache.nxp.com/docs/en/supporting-information/RK043FN02H-CT.pdf
2018-09-24 07:05 PM
Thanks.
I will take a look.