zephyr/drivers/display/Kconfig.st75256
Camille BAUD 772b9afc97 drivers: display: Introduce ST75256
Introduces a driver for ST75256 Display Controller that
supports mono and greyscale but not i2c mode.

Signed-off-by: Camille BAUD <mail@massdriver.space>
2025-04-30 07:51:57 +02:00

32 lines
662 B
Plaintext

# Copyright (c) 2025 MASSDRIVER EI (massdriver.space)
# SPDX-License-Identifier: Apache-2.0
menuconfig ST75256
bool "ST75256 display controller"
default y
depends on DT_HAS_SITRONIX_ST75256_ENABLED
select MIPI_DBI
help
Enable driver for ST75256 display controller.
if ST75256
config ST75256_DEFAULT_CONTRAST
int "ST75256 default contrast"
default 155
range 0 255
help
ST75256 default contrast.
config ST75256_DEFAULT_GREYSCALE
bool "ST75256 default mode is greyscale"
help
Sets greyscale mode as default mode
config ST75256_CONV_BUFFER_LINES
int "How many lines can the conversion buffer hold"
default 16
range 1 162
endif # ST75256