summaryrefslogtreecommitdiff
path: root/apps/examples/timer/Kconfig
blob: 9c3ae7ce367305b6bc6943b7fa08ab7ee7505579 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#
# 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