2012-09-17 15:18:44 -03:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see misc/tools/kconfig-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
config EXAMPLES_POLL
|
|
|
|
bool "Poll example"
|
|
|
|
default n
|
2013-01-24 12:28:15 -04:00
|
|
|
depends on !NSH_BUILTIN_APPS
|
2012-09-17 15:18:44 -03:00
|
|
|
---help---
|
|
|
|
Enable the poll example
|
|
|
|
|
|
|
|
if EXAMPLES_POLL
|
2013-01-24 12:28:15 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-09-17 15:18:44 -03:00
|
|
|
endif
|