summaryrefslogtreecommitdiff
path: root/nuttx/configs/ez80f910200zco/nettest
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-14 21:00:56 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-03-14 21:00:56 +0000
commit095a6f2fb2b290ef133f5c3818e6314b4f71f956 (patch)
tree1ce512bc5c131da415811ad71db8a02f0d614b5e /nuttx/configs/ez80f910200zco/nettest
parent492b0c228d0edba704aaad29009dabecac6dab86 (diff)
downloadpx4-nuttx-095a6f2fb2b290ef133f5c3818e6314b4f71f956.tar.gz
px4-nuttx-095a6f2fb2b290ef133f5c3818e6314b4f71f956.tar.bz2
px4-nuttx-095a6f2fb2b290ef133f5c3818e6314b4f71f956.zip
Misc, most cosmetic, updates
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1609 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs/ez80f910200zco/nettest')
-rw-r--r--nuttx/configs/ez80f910200zco/nettest/defconfig23
1 files changed, 22 insertions, 1 deletions
diff --git a/nuttx/configs/ez80f910200zco/nettest/defconfig b/nuttx/configs/ez80f910200zco/nettest/defconfig
index 04f7c8f1e..f4cc622fc 100644
--- a/nuttx/configs/ez80f910200zco/nettest/defconfig
+++ b/nuttx/configs/ez80f910200zco/nettest/defconfig
@@ -210,7 +210,19 @@ CONFIG_HAVE_LIBM=n
# CONFIG_MUTEX_TYPES: Set to enable support for recursive and
# errorcheck mutexes. Enables pthread_mutexattr_settype().
# CONFIG_PRIORITY_INHERITANCE : Set to enable support for priority
-# inheritance on mutexes and semaphores.
+# inheritance on mutexes and semaphores.
+# CONFIG_SEM_PREALLOCHOLDERS: This setting is only used if priority
+# inheritance is enabled. It defines the maximum number of different
+# threads (minus one) that can take counts on a semaphore with priority
+# inheritance support. This may be set to zero if priority inheritance
+# is disabled OR if you are only using semaphores as mutexes (only
+# one holder) OR if no more than two threads participate using a
+# counting semaphore.
+# CONFIG_SEM_NNESTPRIO. If priority inheritance is enabled, then this
+# setting is the maximum number of higher priority threads (minus 1)
+# than can be waiting for another thread to release a count on a
+# semaphore. This value may be set to zero if no more than one
+# thread is expected to wait for a semaphore.
#
CONFIG_EXAMPLE=nettest
CONFIG_DEBUG=y
@@ -230,6 +242,8 @@ CONFIG_DEV_CONSOLE=y
CONFIG_DEV_LOWCONSOLE=y
CONFIG_MUTEX_TYPES=n
CONFIG_PRIORITY_INHERITANCE=n
+CONFIG_SEM_PREALLOCHOLDERS=0
+CONFIG_SEM_NNESTPRIO=0
#
# The following can be used to disable categories of
@@ -590,6 +604,13 @@ CONFIG_NX_MXSERVERMSGS=32
CONFIG_NX_MXCLIENTMSGS=16
#
+# Settings for examples/poll
+CONFIG_EXAMPLE_POLL_NOMAC=y
+CONFIG_EXAMPLE_POLL_IPADDR=(10L<<24|0L<<16|0L<<8|2L)
+CONFIG_EXAMPLE_POLL_DRIPADDR=(10L<<24|0L<<16|0L<<8|1L)
+CONFIG_EXAMPLE_POLL_NETMASK=(255L<<24|255L<<16|255L<<8|0L)
+
+#
# Settings for examples/uip
CONFIG_EXAMPLE_UIP_IPADDR=(10L<<24|0L<<16|0L<<8|2L)
CONFIG_EXAMPLE_UIP_DRIPADDR=(10L<<24|0L<<16|0L<<8|1L)