2020-09-23 11:44 PM
I will use FreeRTOS and TouchGFX with STM32F767.
I have TFT LCD (320x480x2 bytes). RGB565
Can I display using only SRAM (512KB) ?
2020-09-24 01:11 AM
Let's calculate: RGB565 uses 16bit, so the graphics will occupy 320*480*2=300KB.
It should work if you only use one graphics frame and keep an eye to the remaining RAM.
Good luck!
/Peter