Hello, we'd like to compile some large image files into our
project, have the data available to stream to a display peripheral
via LTDC+DSI peripherals. I tried to get cute and created a desktop
program that imports pictures and generates C functions to set memory
locations, like:
void InitImageData_Untitled_400x400_To(uint32_t img_address)
{
*(uint32_t*) (img_address + 0x00000000) = 0xFF00A400;
//...
}
except for larger images this function gets impossibly large an
↧