Added support for ILI9225

Added support for ILI9225 display controller. Currently no support for hardware rotation is implemented and only the default portrait resolution 176x220 is supported.
This commit is contained in:
Keagan Ladds 2022-01-17 20:17:19 +01:00
parent 26fe6e7703
commit 07ad6bf43e
8 changed files with 324 additions and 0 deletions

View file

@ -44,6 +44,8 @@ elseif(CONFIG_LV_TFT_DISPLAY_CONTROLLER_ILI9163C)
list(APPEND SOURCES "lvgl_tft/ili9163c.c")
elseif(CONFIG_LV_TFT_DISPLAY_CONTROLLER_PCD8544)
list(APPEND SOURCES "lvgl_tft/pcd8544.c")
elseif(CONFIG_LV_TFT_DISPLAY_CONTROLLER_ILI9225)
list(APPEND SOURCES "lvgl_tft/ili9225.c")
else()
message(WARNING "LVGL ESP32 drivers: Display controller not defined.")
endif()