summaryrefslogtreecommitdiff
path: root/apps/examples/poll/Kconfig
blob: f35a9200b5d874cd115f62e1a40fe7684193d7fa (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
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

config EXAMPLES_POLL
	bool "Poll example"
	default n
	depends on !NSH_BUILTIN_APPS
	---help---
		Enable the poll example

if EXAMPLES_POLL

config EXAMPLES_POLL_NOMAC
	bool "Use Canned MAC Address"
	default n

config EXAMPLES_POLL_IPADDR
	hex "Target IP address"
	default 0x0a000002

config EXAMPLES_POLL_DRIPADDR
	hex "Default Router IP address (Gateway)"
	default 0x0a000001

config EXAMPLES_POLL_NETMASK
	hex "Network Mask"
	default 0xffffff00

endif