2017-09-12 09:51:47 -06:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_FB
|
2018-09-03 09:29:56 -06:00
|
|
|
tristate "Framebuffer driver example"
|
2017-09-12 09:51:47 -06:00
|
|
|
default n
|
2017-11-26 07:56:16 -06:00
|
|
|
select LCD_PACKEDMSFIRST if LCD
|
2017-09-12 09:51:47 -06:00
|
|
|
depends on VIDEO_FB
|
|
|
|
---help---
|
2017-09-13 10:58:29 -06:00
|
|
|
Enable the Framebuffer driver example.
|
|
|
|
|
|
|
|
This example currently supports only framebuffer devices with 1, 8,
|
|
|
|
16, or 24/32 pixel depth with only Mono, RGB323, RGB565, and RGB888
|
|
|
|
color formats, respectively. The example would have be extended to
|
|
|
|
support other bits-per-pixels or other color formats.
|
2017-09-12 09:51:47 -06:00
|
|
|
|
|
|
|
if EXAMPLES_FB
|
|
|
|
|
|
|
|
config EXAMPLES_FB_DEFAULTFB
|
|
|
|
string "Default framebuffer driver"
|
|
|
|
default "/dev/fb0"
|
|
|
|
---help---
|
|
|
|
Default framebuffer drivers. This selection can be overridden from
|
|
|
|
the command line.
|
|
|
|
|
|
|
|
config EXAMPLES_FB_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "fb"
|
|
|
|
---help---
|
2019-08-23 11:59:28 -06:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-09-12 09:51:47 -06:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config EXAMPLES_FB_PRIORITY
|
|
|
|
int "Task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_FB_STACKSIZE
|
|
|
|
int "Stack size"
|
2020-03-27 14:10:33 +09:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-09-12 09:51:47 -06:00
|
|
|
|
|
|
|
endif
|