Browse Source

boards: esp32s3_touch_lcd_1_28: fix display pixel format

The pixel format was set to PANEL_PIXEL_FORMAT_RGB_888 which resulted
in horizontal lines of wrong color ... with PANEL_PIXEL_FORMAT_RGB_565
everything looks good.

Signed-off-by: Michael Kaplan <m.kaplan@evva.com>
pull/84989/head
Michael Kaplan 5 months ago committed by Benjamin Cabé
parent
commit
4abffffab1
  1. 2
      boards/waveshare/esp32s3_touch_lcd_1_28/esp32s3_touch_lcd_1_28_esp32s3_procpu.dts

2
boards/waveshare/esp32s3_touch_lcd_1_28/esp32s3_touch_lcd_1_28_esp32s3_procpu.dts

@ -74,7 +74,7 @@ @@ -74,7 +74,7 @@
compatible = "galaxycore,gc9x01x";
reg = <0>;
mipi-max-frequency = <100000000>;
pixel-format = <PANEL_PIXEL_FORMAT_RGB_888>;
pixel-format = <PANEL_PIXEL_FORMAT_RGB_565>;
display-inversion;
width = <240>;
height = <240>;

Loading…
Cancel
Save