summaryrefslogblamecommitdiff
path: root/apps/examples/timer/Kconfig
blob: 9c3ae7ce367305b6bc6943b7fa08ab7ee7505579 (plain) (tree)



































































                                                                                 
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config EXAMPLES_TIMER
	bool "Timer example"
	default n
	depends on TIMER
	---help---
		Enable the \"Timer, World!\" example

if EXAMPLES_TIMER

config EXAMPLE_TIMER_DEVNAME
	string "Timer device name"
	default "/dev/timer0"
	---help---
		This is the name of the timer device that will be tested.

config EXAMPLE_TIMER_INTERVAL
	int "Timer interval (microseconds)"
	default 1000000
	---help---
		This is the timer interval in microseconds.

config EXAMPLE_TIMER_DELAY
	int "Sample delay (microseconds)"
	default 100000
	---help---
		This is the delay between timer samples in microseconds

config EXAMPLE_TIMER_NSAMPLES
	int "Number of samples"
	default 20
	---help---
		This is the number of timer samples that will be collected

config EXAMPLES_TIMER_APPNAME
	string "Timer executable name"
	default "timer"
	depends on NSH_BUILTIN_APPS
	---help---
		This is the name of the built-in application

config EXAMPLES_TIMER_STACKSIZE
	int "Timer stack size"
	default 2048
	depends on NSH_BUILTIN_APPS
	---help---
		This is the stack size allocated when the timer task runs

config EXAMPLES_TIMER_PRIORITY
	int "Timer task priority"
	default 100
	depends on NSH_BUILTIN_APPS
	---help---
		This is the priority of the timer task

config EXAMPLES_TIMER_PROGNAME
	string "Timer program name"
	default "timer"
	depends on BUILD_KERNEL
	---help---
		This is the name of the program that will be use when the NSH ELF
		program is installed.

endif