42 lines
1.2 KiB
Plaintext
Executable File
42 lines
1.2 KiB
Plaintext
Executable File
menu "Example Configuration"
|
|
|
|
choice EXAMPLE_LCD_CONTROLLER
|
|
prompt "LCD controller model"
|
|
default EXAMPLE_LCD_CONTROLLER_ILI9341
|
|
help
|
|
Select LCD controller model
|
|
|
|
config EXAMPLE_LCD_CONTROLLER_ILI9341
|
|
bool "ILI9341"
|
|
|
|
config EXAMPLE_LCD_CONTROLLER_GC9A01
|
|
bool "GC9A01"
|
|
config EXAMPLE_LCD_CONTROLLER_ST77916
|
|
bool "ST77916"
|
|
endchoice
|
|
|
|
config EXAMPLE_LCD_TOUCH_ENABLED
|
|
bool "Enable LCD touch"
|
|
default n
|
|
help
|
|
Enable this option if you wish to use display touch. You can select from touch controllers.
|
|
|
|
choice EXAMPLE_LCD_TOUCH_CONTROLLER
|
|
prompt "LCD touch controller model"
|
|
depends on EXAMPLE_LCD_TOUCH_ENABLED
|
|
default EXAMPLE_LCD_TOUCH_CONTROLLER_STMPE610
|
|
help
|
|
Select LCD touch controller model
|
|
|
|
config EXAMPLE_LCD_TOUCH_CONTROLLER_STMPE610
|
|
bool "STMPE610"
|
|
help
|
|
Touch controller STMPE610 connected via SPI.
|
|
config EXAMPLE_LCD_TOUCH_CONTROLLER_CST816S
|
|
bool "CST816S"
|
|
help
|
|
Touch controller CST816S connected via I2C.
|
|
endchoice
|
|
|
|
endmenu
|