2019-04-15 01:22 AM
I'm trying to find a way to change the color order of the LTDC for RGB565. It apears that the link between the memory and the LTDC pins is fixed. I would like to output in order BGR instead of RGB. Nothing stand out in the reference manual (STM32F468) to me. Any ideas or pointers?
Kind Regards,
Rob
2019-04-15 04:32 AM
Hi
The color order manipulated by the higher layer drivers.
In case you use STEmWin, the default conf is BGR
by defining this #define GUI_USE_ARGB (1) inside GUIConf.h can change the mode to RGB
2019-04-17 06:41 AM
Thanks for the tip Vangelis !