summaryrefslogtreecommitdiff
path: root/apps/examples/poll
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-24 16:28:15 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-24 16:28:15 +0000
commit9ed566465c0f31106e2e3fd3be2b33dd9489d3b0 (patch)
treea51180fd3fd067bdba947fe6b9ba9797db0e2ba7 /apps/examples/poll
parentb563cb2cdc447a97347d063fad5ef586434757eb (diff)
downloadnuttx-9ed566465c0f31106e2e3fd3be2b33dd9489d3b0.tar.gz
nuttx-9ed566465c0f31106e2e3fd3be2b33dd9489d3b0.tar.bz2
nuttx-9ed566465c0f31106e2e3fd3be2b33dd9489d3b0.zip
apps/examples/nettest and poll: Complete Kconfig files
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5556 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/poll')
-rw-r--r--apps/examples/poll/Kconfig18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/examples/poll/Kconfig b/apps/examples/poll/Kconfig
index c52827496..f35a9200b 100644
--- a/apps/examples/poll/Kconfig
+++ b/apps/examples/poll/Kconfig
@@ -6,8 +6,26 @@
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