Skip to content
Closed
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
1 change: 1 addition & 0 deletions drivers/display/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ zephyr_library_sources_ifdef(CONFIG_SSD1331 display_ssd1331.c)
zephyr_library_sources_ifdef(CONFIG_SSD135X display_ssd135x.c)
zephyr_library_sources_ifdef(CONFIG_ST730X display_st730x.c)
zephyr_library_sources_ifdef(CONFIG_ST75256 display_st75256.c)
zephyr_library_sources_ifdef(CONFIG_ST7565R display_st7565r.c)
zephyr_library_sources_ifdef(CONFIG_ST7567 display_st7567.c)
zephyr_library_sources_ifdef(CONFIG_ST7789V display_st7789v.c)
zephyr_library_sources_ifdef(CONFIG_ST7735R display_st7735r.c)
Expand Down
1 change: 1 addition & 0 deletions drivers/display/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ source "drivers/display/Kconfig.ssd135x"
source "drivers/display/Kconfig.ssd1363"
source "drivers/display/Kconfig.st730x"
source "drivers/display/Kconfig.st75256"
source "drivers/display/Kconfig.st7565r"
source "drivers/display/Kconfig.st7567"
source "drivers/display/Kconfig.st7735r"
source "drivers/display/Kconfig.st7789v"
Expand Down
11 changes: 11 additions & 0 deletions drivers/display/Kconfig.st7565r
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright (c) Giyora Haroon
# SPDX-License-Identifier: Apache-2.0

config ST7565R
bool "ST7565R display controller driver"
default y
depends on DT_HAS_SITRONIX_ST7565R_ENABLED
select SPI
select GPIO
help
Enable driver for the ST7565R display controller.
Loading
Loading