summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-17 11:55:50 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-17 11:55:50 -0600
commit322245c947c077bd1bc3fc6509742bf4972df9d2 (patch)
treefcc02a884245c58e33cc631e75800a9a6a2c1b09
parentcbf456ad4ab8109df4e80293a2da73d94f9804a1 (diff)
downloadpx4-nuttx-322245c947c077bd1bc3fc6509742bf4972df9d2.tar.gz
px4-nuttx-322245c947c077bd1bc3fc6509742bf4972df9d2.tar.bz2
px4-nuttx-322245c947c077bd1bc3fc6509742bf4972df9d2.zip
apps/examples/udp/Kconfig: Default setting is backward
-rw-r--r--apps/examples/udp/Kconfig4
-rw-r--r--apps/examples/udp/target.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/examples/udp/Kconfig b/apps/examples/udp/Kconfig
index c50573f62..fd64d5290 100644
--- a/apps/examples/udp/Kconfig
+++ b/apps/examples/udp/Kconfig
@@ -29,7 +29,7 @@ config EXAMPLES_UDP_NETMASK
config EXAMPLES_UDP_SERVERIP
hex "Server IP address"
- default 0x0a000001 if EXAMPLES_UDP_SERVER
- default 0x0a000002 if !EXAMPLES_UDP_SERVER
+ default 0x0a000001 if !EXAMPLES_UDP_SERVER
+ default 0x0a000002 if EXAMPLES_UDP_SERVER
endif # EXAMPLES_UDP
diff --git a/apps/examples/udp/target.c b/apps/examples/udp/target.c
index 8c5d88dca..72ca05d17 100644
--- a/apps/examples/udp/target.c
+++ b/apps/examples/udp/target.c
@@ -49,7 +49,7 @@
#include "udp-internal.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
/****************************************************************************