2017-09-12 17:51:47 +02: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 17:29:56 +02:00
|
|
|
tristate "Framebuffer driver example"
|
2017-09-12 17:51:47 +02:00
|
|
|
default n
|
2017-11-26 14:56:16 +01:00
|
|
|
select LCD_PACKEDMSFIRST if LCD
|
2017-09-12 17:51:47 +02:00
|
|
|
depends on VIDEO_FB
|
|
|
|
---help---
|
2017-09-13 18:58:29 +02: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 17:51:47 +02: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 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-09-12 17:51:47 +02:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config EXAMPLES_FB_PRIORITY
|
|
|
|
int "Task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_FB_STACKSIZE
|
|
|
|
int "Stack size"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-09-12 17:51:47 +02:00
|
|
|
|
|
|
|
endif
|