From 9440943c38c6f6b142338d053103d7a79744808e Mon Sep 17 00:00:00 2001 From: Marco Massarelli <60667061+ceoloide@users.noreply.github.com> Date: Tue, 27 Feb 2024 13:08:10 -0500 Subject: [PATCH] Apply Zephyr 3.5 changes The old `LV_Z_DPI` Kconfig symbol was promoted to a Kconfig in upstream LVGL, and is now named `LV_DPI_DEF`. Inverting black/white pixels has moved out of the Kconfig system and into a new DTS property. --- boards/shields/corney_island/Kconfig.defconfig | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/boards/shields/corney_island/Kconfig.defconfig b/boards/shields/corney_island/Kconfig.defconfig index 1bb7617..b682048 100644 --- a/boards/shields/corney_island/Kconfig.defconfig +++ b/boards/shields/corney_island/Kconfig.defconfig @@ -21,9 +21,6 @@ if SHIELD_CORNEY_ISLAND_LEFT || SHIELD_CORNEY_ISLAND_RIGHT config SSD1306 default n - config SSD1306_REVERSE_MODE - default y - endif # ZMK_DISPLAY if LVGL @@ -31,7 +28,7 @@ if SHIELD_CORNEY_ISLAND_LEFT || SHIELD_CORNEY_ISLAND_RIGHT config LV_Z_VDB_SIZE default 64 - config LV_Z_DPI + config LV_DPI_DEF default 148 config LV_Z_BITS_PER_PIXEL @@ -43,4 +40,4 @@ if SHIELD_CORNEY_ISLAND_LEFT || SHIELD_CORNEY_ISLAND_RIGHT endif # LVGL -endif \ No newline at end of file +endif