You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
575 B
26 lines
575 B
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_SLCD
|
|
tristate "Segment LCD test"
|
|
default n
|
|
---help---
|
|
Enables a simple test of an alphanumer, segment LCD
|
|
|
|
if EXAMPLES_SLCD
|
|
|
|
config EXAMPLES_SLCD_DEVNAME
|
|
string "SLCD device path"
|
|
default "/dev/slcd0"
|
|
---help---
|
|
The full path to the SLCD device to be tested
|
|
|
|
config EXAMPLES_SLCD_BUFSIZE
|
|
int "I/O buffer size"
|
|
default 64
|
|
---help---
|
|
The size of the I/O buffer to use in the test (not a critical setting)
|
|
|
|
endif
|
|
|