zephyr/drivers/display/Kconfig.ssd1306
Gerard Marull-Paretas 95fb0ded6b kconfig: remove Enable from boolean prompts
According to Kconfig guidelines, boolean prompts must not start with
"Enable...". The following command has been used to automate the changes
in this patch:

sed -i "s/bool \"[Ee]nables\? \(\w\)/bool \"\U\1/g" **/Kconfig*

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-03-09 15:35:54 +01:00

40 lines
781 B
Text

# SSD1306 display controller configuration options
# Copyright (c) 2018 Phytec Messtechnik GmbH
# SPDX-License-Identifier: Apache-2.0
menuconfig SSD1306
bool "SSD1306 display driver"
depends on I2C || SPI
help
Enable driver for SSD1306 display driver.
if SSD1306
config SSD1306_DEFAULT_CONTRAST
int "SSD1306 default contrast"
default 128
range 0 255
help
SSD1306 default contrast.
choice SSD1306_CONTROLLER_TYPE
prompt "Display controller type"
default SSD1306_DEFAULT
help
Specify the type of the controller.
config SSD1306_DEFAULT
bool "Default SSD1306 controller"
config SSD1306_SH1106_COMPATIBLE
bool "SH1106 compatible mode"
endchoice
config SSD1306_REVERSE_MODE
bool "SSD1306 reverse mode"
help
SSD1306 reverse video mode.
endif # SSD1306