Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions drivers/lcd/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ if(CONFIG_LCD)
list(APPEND SRCS st7789.c)
endif()

if(CONFIG_LCD_ST7796)
list(APPEND SRCS st7796.c)
endif()

if(CONFIG_LCD_GC9A01)
list(APPEND SRCS gc9a01.c)
endif()
Expand Down
8 changes: 8 additions & 0 deletions drivers/lcd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -827,6 +827,14 @@ config LCD_ST7789_DATA_ENDIAN_LITTLE

endif # LCD_ST7789

config LCD_ST7796
bool "ST7796 LCD Display"
default n
depends on SPI
depends on LCD_FRAMEBUFFER
---help---
Enable support for ST7796 LCD display driver.

config LCD_GC9A01
bool "Galaxycore GC9A01 TFT Controller"
default n
Expand Down
4 changes: 4 additions & 0 deletions drivers/lcd/Make.defs
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ ifeq ($(CONFIG_LCD_ST7789),y)
CSRCS += st7789.c
endif

ifeq ($(CONFIG_LCD_ST7796),y)
CSRCS += st7796.c
endif

ifeq ($(CONFIG_LCD_GC9A01),y)
CSRCS += gc9a01.c
endif
Expand Down
Loading
Loading