Skip to content

Commit

Permalink
Merge pull request espressif#359 from Horion0415/feat/ili9881_compone…
Browse files Browse the repository at this point in the history
…nt_mod

feat(lcd): Modified the ILI9881 and ST7796 LCD component (BSP-529)
  • Loading branch information
tore-espressif authored Aug 30, 2024
2 parents 9ddd9e1 + 5c83d21 commit a7de01b
Show file tree
Hide file tree
Showing 23 changed files with 1,943 additions and 706 deletions.
12 changes: 12 additions & 0 deletions .build-test-rules.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,15 @@ components/esp_lvgl_port/examples/rgb_lcd:
disable:
- if: IDF_VERSION_MAJOR < 5
reason: Example for RGB LCD is supported only for IDF >= 5.0

components/lcd/esp_lcd_ili9881c:
disable:
- if: (IDF_VERSION_MAJOR == 5 and IDF_VERSION_MINOR < 3) or IDF_VERSION_MAJOR < 5
reason: Component is supported only for IDF >= 5.3
- if: IDF_TARGET not in ["esp32p4"]
reason: Component is supported only for esp32p4 target

components/lcd/esp_lcd_st7796/test_apps:
disable:
- if: IDF_VERSION_MAJOR < 5
reason: Component is supported only for IDF >= 5.0
7 changes: 6 additions & 1 deletion components/lcd/esp_lcd_ili9881c/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
idf_component_register(SRCS "esp_lcd_ili9881c.c"
set(srcs "")
if(CONFIG_SOC_MIPI_DSI_SUPPORTED)
list(APPEND srcs "esp_lcd_ili9881c.c")
endif()

idf_component_register(SRCS ${srcs}
INCLUDE_DIRS "include"
REQUIRES "esp_lcd"
PRIV_REQUIRES "esp_driver_gpio")
Loading

0 comments on commit a7de01b

Please sign in to comment.