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>
This commit is contained in:
parent
9d7bd52313
commit
b31215e34f
10 changed files with 13 additions and 13 deletions
|
|
@ -56,7 +56,7 @@ config LV_Z_POINTER_KSCAN
|
|||
config LV_Z_VDB_SIZE
|
||||
default 16
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 128
|
||||
|
||||
choice LV_COLOR_DEPTH
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ config LV_Z_DOUBLE_VDB
|
|||
config LV_Z_FULL_REFRESH
|
||||
default y
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 128
|
||||
|
||||
config LV_Z_BITS_PER_PIXEL
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ config LV_Z_POINTER_KSCAN
|
|||
config LV_Z_VDB_SIZE
|
||||
default 16
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 128
|
||||
|
||||
choice LV_COLOR_DEPTH
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ config LV_Z_FULL_REFRESH
|
|||
config LV_Z_BITS_PER_PIXEL
|
||||
default 16
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 128
|
||||
|
||||
choice LV_COLOR_DEPTH
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ config LV_Z_DOUBLE_VDB
|
|||
config LV_Z_FULL_REFRESH
|
||||
default y
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 128
|
||||
|
||||
config LV_Z_BITS_PER_PIXEL
|
||||
|
|
@ -80,7 +80,7 @@ config LV_Z_POINTER_KSCAN
|
|||
config LV_Z_VDB_SIZE
|
||||
default 16
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 128
|
||||
|
||||
choice LV_COLOR_DEPTH
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ endchoice
|
|||
config LV_Z_BITS_PER_PIXEL
|
||||
default 1
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 130
|
||||
|
||||
config LV_Z_VDB_SIZE
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ if LVGL
|
|||
config LV_Z_VDB_SIZE
|
||||
default 16
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 150
|
||||
|
||||
config LV_Z_BITS_PER_PIXEL
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ if LVGL
|
|||
config LV_Z_VDB_SIZE
|
||||
default 64
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 116 if SHIELD_SH1106_128X64
|
||||
default 148
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ config LV_Z_VDB_SIZE
|
|||
default 16 if SHIELD_WAVESHARE_EPAPER_GDEW075T7
|
||||
default 16
|
||||
|
||||
config LV_Z_DPI
|
||||
config LV_DPI_DEF
|
||||
default 188 if SHIELD_WAVESHARE_EPAPER_GDEH0154A07
|
||||
default 120 if SHIELD_WAVESHARE_EPAPER_GDEW042T2
|
||||
default 130
|
||||
|
|
|
|||
|
|
@ -8,15 +8,15 @@ config LVGL
|
|||
|
||||
if LVGL
|
||||
|
||||
config LV_DPI_DEF
|
||||
int
|
||||
|
||||
config LV_Z_BITS_PER_PIXEL
|
||||
int
|
||||
|
||||
config LV_Z_DOUBLE_VDB
|
||||
bool
|
||||
|
||||
config LV_Z_DPI
|
||||
int
|
||||
|
||||
config LV_Z_FULL_REFRESH
|
||||
bool
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue