apps/examples/udp/Kconfig: Default setting is backward

This commit is contained in:
Gregory Nutt 2015-01-17 11:55:50 -06:00
parent 7720c35502
commit 981ca845cd
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -49,7 +49,7 @@
#include "udp-internal.h"
/****************************************************************************
* Definitions
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************