Using Internal Flash Memory For Frame Buffer
I'm using the stm32f769i-disco1. Which has 2 mB of flash memory.
https://www.st.com/en/evaluation-tools/32f769idiscovery.html
I'm creating a very simply application that's drawing circles and squares and some text, so it's not using most of the flash. Could i use the remanding flash to create a frame buffer for the display.
The only thing related to this idea is using external flash as framebuffer.
https://github.com/ProjectsByJRP/QSPI_Flash_to_LCD
If i need to, i'm fine with rendering partial display's in ram and writing them out to flash. I'm just trying to avoid having extra chips.