zephyr/boards/shields/ls0xx_generic/Kconfig.defconfig
Fabio Baltieri b31215e34f modules: lvgl: replace LV_Z_DPI with LV_DPI_DEF
It looks like LV_Z_DPI is not used anywhere and only lived in the
context of an incorrect board symbol definition so far (moved to
Kconfig.lvgl in the previous patch).

This was probably meant to be LV_DPI_DEF (which actually exists in the
LVGL module) and was renamed incorrectly, fix it by renaming it
everywhere.

Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
2023-06-13 07:26:29 -04:00

28 lines
342 B
Plaintext

# Copyright (c) 2020 Rohit Gujarathi
# SPDX-License-Identifier: Apache-2.0
if SHIELD_LS013B7DH03
if DISPLAY
if LVGL
config LV_Z_VDB_SIZE
default 16
config LV_DPI_DEF
default 150
config LV_Z_BITS_PER_PIXEL
default 1
choice LV_COLOR_DEPTH
default LV_COLOR_DEPTH_1
endchoice
endif # LVGL
endif # DISPLAY
endif # SHIELD_LS013B7DH03