1# Copyright (c) 2019 Jan Van Winkel <jan.van_winkel@dxplore.eu> 2# SPDX-License-Identifier: Apache-2.0 3 4if SHIELD_ST7789V_TL019FQV01 || SHIELD_ST7789V_WAVESHARE_240X240 5 6if DISPLAY 7 8choice ST7789V_PIXEL_FORMAT 9 default ST7789V_RGB888 if SHIELD_ST7789V_TL019FQV01 10 default ST7789V_RGB565 if SHIELD_ST7789V_WAVESHARE_240X240 11endchoice 12 13if LVGL 14 15config LV_Z_BITS_PER_PIXEL 16 default 24 if SHIELD_ST7789V_TL019FQV01 17 default 16 if SHIELD_ST7789V_WAVESHARE_240X240 18 19choice LV_COLOR_DEPTH 20 default LV_COLOR_DEPTH_16 if SHIELD_ST7789V_WAVESHARE_240X240 21endchoice 22 23configdefault LV_COLOR_16_SWAP 24 default y if SHIELD_ST7789V_WAVESHARE_240X240 25 26endif # LVGL 27 28endif # DISPLAY 29 30endif # SHIELD_ST7789V_TL019FQV01 || SHIELD_ST7789V_WAVESHARE_240X240 31