Skip to content

Commit

Permalink
Merge branch 'feature/add_ssd1963_screen' into 'master'
Browse files Browse the repository at this point in the history
display: add ssd1963 ili9488 driver

See merge request rd/esp-iot-solution!506
  • Loading branch information
esp-lqq committed Jun 11, 2021
2 parents d03696c + 0f47c1d commit bd0702d
Show file tree
Hide file tree
Showing 11 changed files with 1,065 additions and 2 deletions.
2 changes: 2 additions & 0 deletions components/display/screen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ set(SCREEN_DIR "controller_driver/ili9341"
"controller_driver/nt35510"
"controller_driver/ili9806"
"controller_driver/ili9486"
"controller_driver/ili9488"
"controller_driver/ssd1351"
"controller_driver/rm68120"
"controller_driver/ssd1306"
"controller_driver/ssd1307"
"controller_driver/ssd1322"
"controller_driver/ssd1963"
)

idf_component_register(SRC_DIRS "${SCREEN_DIR}" "screen_utility" "interface_driver" "."
Expand Down
6 changes: 6 additions & 0 deletions components/display/screen/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ menu "LCD Drivers"
config LCD_DRIVER_SCREEN_CONTROLLER_ILI9806
bool "ILI9806"
default n
config LCD_DRIVER_SCREEN_CONTROLLER_ILI9488
bool "ILI9488"
default n
config LCD_DRIVER_SCREEN_CONTROLLER_NT35510
bool "NT35510"
default n
Expand All @@ -19,6 +22,9 @@ menu "LCD Drivers"
config LCD_DRIVER_SCREEN_CONTROLLER_SSD1351
bool "SSD1351"
default n
config LCD_DRIVER_SCREEN_CONTROLLER_SSD1963
bool "SSD1963"
default n
config LCD_DRIVER_SCREEN_CONTROLLER_ST7789
bool "ST7789"
default n
Expand Down
4 changes: 3 additions & 1 deletion components/display/screen/component.mk
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ SCREEN_DIR = controller_driver/ili9341 \
controller_driver/nt35510 \
controller_driver/ili9806 \
controller_driver/ili9486 \
controller_driver/ili9488 \
controller_driver/ssd1351 \
controller_driver/rm68120 \
controller_driver/ssd1306 \
controller_driver/ssd1307 \
controller_driver/ssd1322
controller_driver/ssd1322 \
controller_driver/ssd1963

COMPONENT_ADD_INCLUDEDIRS := . iface_driver $(SCREEN_DIR) screen_utility
COMPONENT_SRCDIRS := . iface_driver $(SCREEN_DIR) screen_utility
Loading

0 comments on commit bd0702d

Please sign in to comment.