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
1 change: 1 addition & 0 deletions drivers/display/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ zephyr_library_sources_ifdef(CONFIG_SSD16XX ssd16xx.c)
zephyr_library_sources_ifdef(CONFIG_SSD1322 ssd1322.c)
zephyr_library_sources_ifdef(CONFIG_SSD1331 display_ssd1331.c)
zephyr_library_sources_ifdef(CONFIG_SSD1351 display_ssd1351.c)
zephyr_library_sources_ifdef(CONFIG_ST730X display_st730x.c)
zephyr_library_sources_ifdef(CONFIG_ST75256 display_st75256.c)
zephyr_library_sources_ifdef(CONFIG_ST7567 display_st7567.c)
zephyr_library_sources_ifdef(CONFIG_ST7789V display_st7789v.c)
Expand Down
1 change: 1 addition & 0 deletions drivers/display/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ source "drivers/display/Kconfig.ssd1322"
source "drivers/display/Kconfig.ssd1331"
source "drivers/display/Kconfig.ssd1351"
source "drivers/display/Kconfig.ssd1363"
source "drivers/display/Kconfig.st730x"
source "drivers/display/Kconfig.st75256"
source "drivers/display/Kconfig.st7567"
source "drivers/display/Kconfig.st7735r"
Expand Down
26 changes: 26 additions & 0 deletions drivers/display/Kconfig.st730x
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright (c) 2025 MASSDRIVER EI (massdriver.space)
# SPDX-License-Identifier: Apache-2.0

config ST730X
bool "ST730x display driver"
default y
depends on DT_HAS_SITRONIX_ST7305_ENABLED || DT_HAS_SITRONIX_ST7306_ENABLED
select MIPI_DBI
help
Enable driver for ST730X series display controllers.

if ST730X

config ST730X_CONV_BUFFER_LINE_CNT
int "Size of the conversion buffer in lines"
default 8
range 1 1024
help
Size of the conversion buffer in lines.

config ST730X_POWERMODE_LOW
bool "Use low power mode and not high power mode"
help
Enable this to use lower framerate LPM (Low Power Mode).

endif # ST730X
Loading