nuttx-apps/examples/camera/Kconfig
Alin Jerpelea f571af1b2b Examples: camera: add a simple camera snapshot example
The camera example will take the specified number of pictures (default 10)
then will exit

To enable the example add the following line in your defconfig
EXAMPLES_CAMERA

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2020-07-01 07:53:25 +09:00

30 lines
587 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_CAMERA
tristate "Camera example"
default n
---help---
Enable the camera example
if EXAMPLES_CAMERA
config EXAMPLES_CAMERA_PROGNAME
string "Program name"
default "camera"
---help---
This is the name of the program that will be use when the NSH ELF
program is installed.
config EXAMPLES_CAMERA_PRIORITY
int "Camera task priority"
default 100
config EXAMPLES_CAMERA_STACKSIZE
int "Camera stack size"
default 2048
endif