[SOLVED] Color sequence with .png images from ExtFlashSection
Hey!
When I use images in TouchGFX, the color sequence seems different than in regular widgets. It only appears when images are stored on external flash (QSPI flash in my case), images stored on internal flash are fine.
Below is an example: the top 3 squares are BOX widgets, the bottom 3 are images in .png format.
In TouchGFX:

IRL:

I'm driving RGB display with LTDC module. I'm using the ARGB pixel format, so the pixels are aligned at 32 bits:

Also I tried to fill framebuffer manually with pixels to verify their colors and everything showed as expected:
const uint32_t colors[8] = {
0xFFFF0000, // Red
0xFF00FF00, // Green
0xFF0000FF, // Blue
0xFFFFFF00, // Yellow
0xFFFF00FF, // Magenta
0xFF00FFFF, // Cyan
0xFF000000, // Black
0xFFFFFFFF // White
};
What setting am I missing?

