summaryrefslogtreecommitdiff
path: root/nuttx/configs
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-08-26 23:18:13 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2007-08-26 23:18:13 +0000
commit73c7e9963348ec8b964adf5e9df1876a9494b382 (patch)
tree7eb9b3b7b5c5c667c2a4922bb6ed5143cff353f5 /nuttx/configs
parent93f9271b27b33e322ffa45ec71c43884674458af (diff)
downloadpx4-nuttx-73c7e9963348ec8b964adf5e9df1876a9494b382.tar.gz
px4-nuttx-73c7e9963348ec8b964adf5e9df1876a9494b382.tar.bz2
px4-nuttx-73c7e9963348ec8b964adf5e9df1876a9494b382.zip
Adding uIP 1.0
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@310 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/configs')
-rw-r--r--nuttx/configs/README.txt27
-rw-r--r--nuttx/configs/c5471evm/defconfig44
-rw-r--r--nuttx/configs/m68332evb/defconfig44
-rw-r--r--nuttx/configs/mcu123-lpc214x/defconfig44
-rw-r--r--nuttx/configs/ntosd-dm320/defconfig44
-rw-r--r--nuttx/configs/pjrc-8051/defconfig44
-rw-r--r--nuttx/configs/sim/defconfig44
7 files changed, 291 insertions, 0 deletions
diff --git a/nuttx/configs/README.txt b/nuttx/configs/README.txt
index df1516c66..3d7cc69db 100644
--- a/nuttx/configs/README.txt
+++ b/nuttx/configs/README.txt
@@ -208,6 +208,33 @@ defconfig -- This is a configuration file similar to the Linux
structures. The system manages a pool of preallocated
watchdog structures to minimize dynamic allocations
+ TCP/IP support via uIP
+ CONFIG_NET_UIP - Enable or disable all uIP features
+ CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+ CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+ CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+ CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+ CONFIG_UIP_LOGGING - Logging on or off
+ CONFIG_UIP_UDP - UDP support on or off
+ CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+ CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP
+ connections
+ CONFIG_UIP_STATISTICS - uIP statistics on or off
+ CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+ CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's
+ window
+ CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+ CONFIG_UIP_BROADCAST - Broadcast support
+ CONFIG_UIP_LLH_LEN - The link level header length
+ CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf)
+ is defined externally
+ CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when
+ looking for duplicates
+
+ UIP Network Utilities
+ CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+ CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+
Stack and heap information
CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
diff --git a/nuttx/configs/c5471evm/defconfig b/nuttx/configs/c5471evm/defconfig
index 840b410ed..4c7acd09a 100644
--- a/nuttx/configs/c5471evm/defconfig
+++ b/nuttx/configs/c5471evm/defconfig
@@ -250,6 +250,50 @@ CONFIG_PREALLOC_WDOGS=32
CONFIG_PREALLOC_TIMERS=8
#
+# TCP/IP support via uIP
+# CONFIG_NET_UIP - Enable or disable all uIP features
+# CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+# CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+# CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+# CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+# CONFIG_UIP_LOGGING - Logging on or off
+# CONFIG_UIP_UDP - UDP support on or off
+# CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+# CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP connections
+# CONFIG_UIP_STATISTICS - uIP statistics on or off
+# CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+# CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's window
+# CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+# CONFIG_UIP_BROADCAST - Broadcast support
+# CONFIG_UIP_LLH_LEN - The link level header length
+# CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf) is defined externally
+# CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when looking for duplicates
+CONFIG_NET_UIP=n
+CONFIG_NET_UIP_IPv6=n
+CONFIG_UIP_MAX_CONNECTIONS=40
+CONFIG_UIP_MAX_LISTENPORTS=40
+CONFIG_UIP_BUFFER_SIZE=420
+CONFIG_UIP_LOGGING=y
+CONFIG_UIP_UDP=n
+CONFIG_UIP_UDP_CHECKSUMS=y
+#CONFIG_UIP_UDP_CONNS=10
+CONFIG_UIP_STATISTICS=y
+#CONFIG_UIP_PINGADDRCONF=0
+#CONFIG_UIP_RECEIVE_WINDOW=
+#CONFIG_UIP_ARPTAB_SIZE=8
+CONFIG_UIP_BROADCAST=n
+#CONFIG_UIP_LLH_LEN=14
+CONFIG_UIP_EXTERNAL_BUFFER=n
+#CONFIG_UIP_FWCACHE_SIZE=2
+
+#
+# UIP Network Utilities
+# CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+# CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+CONFIG_UIP_DHCP_LIGHT=n
+CONFIG_UIP_RESOLV_ENTRIES=4
+
+#
# Stack and heap information
#
# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
diff --git a/nuttx/configs/m68332evb/defconfig b/nuttx/configs/m68332evb/defconfig
index 521045356..2621de854 100644
--- a/nuttx/configs/m68332evb/defconfig
+++ b/nuttx/configs/m68332evb/defconfig
@@ -239,6 +239,50 @@ CONFIG_PREALLOC_WDOGS=32
CONFIG_PREALLOC_TIMERS=8
#
+# TCP/IP support via uIP
+# CONFIG_NET_UIP - Enable or disable all uIP features
+# CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+# CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+# CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+# CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+# CONFIG_UIP_LOGGING - Logging on or off
+# CONFIG_UIP_UDP - UDP support on or off
+# CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+# CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP connections
+# CONFIG_UIP_STATISTICS - uIP statistics on or off
+# CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+# CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's window
+# CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+# CONFIG_UIP_BROADCAST - Broadcast support
+# CONFIG_UIP_LLH_LEN - The link level header length
+# CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf) is defined externally
+# CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when looking for duplicates
+CONFIG_NET_UIP=n
+CONFIG_NET_UIP_IPv6=n
+CONFIG_UIP_MAX_CONNECTIONS=40
+CONFIG_UIP_MAX_LISTENPORTS=40
+CONFIG_UIP_BUFFER_SIZE=420
+CONFIG_UIP_LOGGING=y
+CONFIG_UIP_UDP=n
+CONFIG_UIP_UDP_CHECKSUMS=y
+#CONFIG_UIP_UDP_CONNS=10
+CONFIG_UIP_STATISTICS=y
+#CONFIG_UIP_PINGADDRCONF=0
+#CONFIG_UIP_RECEIVE_WINDOW=
+#CONFIG_UIP_ARPTAB_SIZE=8
+CONFIG_UIP_BROADCAST=n
+#CONFIG_UIP_LLH_LEN=14
+CONFIG_UIP_EXTERNAL_BUFFER=n
+#CONFIG_UIP_FWCACHE_SIZE=2
+
+#
+# UIP Network Utilities
+# CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+# CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+CONFIG_UIP_DHCP_LIGHT=n
+CONFIG_UIP_RESOLV_ENTRIES=4
+
+#
# Stack and heap information
#
# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
diff --git a/nuttx/configs/mcu123-lpc214x/defconfig b/nuttx/configs/mcu123-lpc214x/defconfig
index 43b575fcf..40692b853 100644
--- a/nuttx/configs/mcu123-lpc214x/defconfig
+++ b/nuttx/configs/mcu123-lpc214x/defconfig
@@ -263,6 +263,50 @@ CONFIG_PREALLOC_WDOGS=32
CONFIG_PREALLOC_TIMERS=8
#
+# TCP/IP support via uIP
+# CONFIG_NET_UIP - Enable or disable all uIP features
+# CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+# CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+# CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+# CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+# CONFIG_UIP_LOGGING - Logging on or off
+# CONFIG_UIP_UDP - UDP support on or off
+# CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+# CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP connections
+# CONFIG_UIP_STATISTICS - uIP statistics on or off
+# CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+# CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's window
+# CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+# CONFIG_UIP_BROADCAST - Broadcast support
+# CONFIG_UIP_LLH_LEN - The link level header length
+# CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf) is defined externally
+# CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when looking for duplicates
+CONFIG_NET_UIP=n
+CONFIG_NET_UIP_IPv6=n
+CONFIG_UIP_MAX_CONNECTIONS=40
+CONFIG_UIP_MAX_LISTENPORTS=40
+CONFIG_UIP_BUFFER_SIZE=420
+CONFIG_UIP_LOGGING=y
+CONFIG_UIP_UDP=n
+CONFIG_UIP_UDP_CHECKSUMS=y
+#CONFIG_UIP_UDP_CONNS=10
+CONFIG_UIP_STATISTICS=y
+#CONFIG_UIP_PINGADDRCONF=0
+#CONFIG_UIP_RECEIVE_WINDOW=
+#CONFIG_UIP_ARPTAB_SIZE=8
+CONFIG_UIP_BROADCAST=n
+#CONFIG_UIP_LLH_LEN=14
+CONFIG_UIP_EXTERNAL_BUFFER=n
+#CONFIG_UIP_FWCACHE_SIZE=2
+
+#
+# UIP Network Utilities
+# CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+# CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+CONFIG_UIP_DHCP_LIGHT=n
+CONFIG_UIP_RESOLV_ENTRIES=4
+
+#
# Stack and heap information
#
# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
diff --git a/nuttx/configs/ntosd-dm320/defconfig b/nuttx/configs/ntosd-dm320/defconfig
index 55753fdc0..0a95f364d 100644
--- a/nuttx/configs/ntosd-dm320/defconfig
+++ b/nuttx/configs/ntosd-dm320/defconfig
@@ -248,6 +248,50 @@ CONFIG_PREALLOC_WDOGS=32
CONFIG_PREALLOC_TIMERS=8
#
+# TCP/IP support via uIP
+# CONFIG_NET_UIP - Enable or disable all uIP features
+# CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+# CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+# CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+# CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+# CONFIG_UIP_LOGGING - Logging on or off
+# CONFIG_UIP_UDP - UDP support on or off
+# CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+# CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP connections
+# CONFIG_UIP_STATISTICS - uIP statistics on or off
+# CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+# CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's window
+# CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+# CONFIG_UIP_BROADCAST - Broadcast support
+# CONFIG_UIP_LLH_LEN - The link level header length
+# CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf) is defined externally
+# CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when looking for duplicates
+CONFIG_NET_UIP=y
+CONFIG_NET_UIP_IPv6=n
+CONFIG_UIP_MAX_CONNECTIONS=40
+CONFIG_UIP_MAX_LISTENPORTS=40
+CONFIG_UIP_BUFFER_SIZE=420
+CONFIG_UIP_LOGGING=y
+CONFIG_UIP_UDP=n
+CONFIG_UIP_UDP_CHECKSUMS=y
+#CONFIG_UIP_UDP_CONNS=10
+CONFIG_UIP_STATISTICS=y
+#CONFIG_UIP_PINGADDRCONF=0
+#CONFIG_UIP_RECEIVE_WINDOW=
+#CONFIG_UIP_ARPTAB_SIZE=8
+CONFIG_UIP_BROADCAST=n
+#CONFIG_UIP_LLH_LEN=14
+CONFIG_UIP_EXTERNAL_BUFFER=n
+#CONFIG_UIP_FWCACHE_SIZE=2
+
+#
+# UIP Network Utilities
+# CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+# CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+CONFIG_UIP_DHCP_LIGHT=n
+CONFIG_UIP_RESOLV_ENTRIES=4
+
+#
# Stack and heap information
#
# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
diff --git a/nuttx/configs/pjrc-8051/defconfig b/nuttx/configs/pjrc-8051/defconfig
index 6ae70d592..3857c85d8 100644
--- a/nuttx/configs/pjrc-8051/defconfig
+++ b/nuttx/configs/pjrc-8051/defconfig
@@ -236,6 +236,50 @@ CONFIG_PREALLOC_WDOGS=4
CONFIG_PREALLOC_TIMERS=0
#
+# TCP/IP support via uIP
+# CONFIG_NET_UIP - Enable or disable all uIP features
+# CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+# CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+# CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+# CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+# CONFIG_UIP_LOGGING - Logging on or off
+# CONFIG_UIP_UDP - UDP support on or off
+# CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+# CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP connections
+# CONFIG_UIP_STATISTICS - uIP statistics on or off
+# CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+# CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's window
+# CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+# CONFIG_UIP_BROADCAST - Broadcast support
+# CONFIG_UIP_LLH_LEN - The link level header length
+# CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf) is defined externally
+# CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when looking for duplicates
+CONFIG_NET_UIP=y
+CONFIG_NET_UIP_IPv6=n
+CONFIG_UIP_MAX_CONNECTIONS=40
+CONFIG_UIP_MAX_LISTENPORTS=40
+CONFIG_UIP_BUFFER_SIZE=420
+CONFIG_UIP_LOGGING=y
+CONFIG_UIP_UDP=n
+CONFIG_UIP_UDP_CHECKSUMS=y
+#CONFIG_UIP_UDP_CONNS=10
+CONFIG_UIP_STATISTICS=y
+#CONFIG_UIP_PINGADDRCONF=0
+#CONFIG_UIP_RECEIVE_WINDOW=
+#CONFIG_UIP_ARPTAB_SIZE=8
+CONFIG_UIP_BROADCAST=n
+#CONFIG_UIP_LLH_LEN=14
+CONFIG_UIP_EXTERNAL_BUFFER=n
+#CONFIG_UIP_FWCACHE_SIZE=2
+
+#
+# UIP Network Utilities
+# CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+# CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+CONFIG_UIP_DHCP_LIGHT=n
+CONFIG_UIP_RESOLV_ENTRIES=4
+
+#
# Stack and heap information
#
# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP
diff --git a/nuttx/configs/sim/defconfig b/nuttx/configs/sim/defconfig
index e60848b0a..e2cd2a3a9 100644
--- a/nuttx/configs/sim/defconfig
+++ b/nuttx/configs/sim/defconfig
@@ -210,6 +210,50 @@ CONFIG_PREALLOC_TIMERS=8
CONFIG_FS_FAT=y
#
+# TCP/IP support via uIP
+# CONFIG_NET_UIP - Enable or disable all uIP features
+# CONFIG_NET_UIP_IPv6 - Build in support for IPv6
+# CONFIG_UIP_MAX_CONNECTIONS - Maximum number of TCP connections
+# CONFIG_UIP_MAX_LISTENPORTS - Maximum number of listening TCP ports
+# CONFIG_UIP_BUFFER_SIZE - uIP buffer size
+# CONFIG_UIP_LOGGING - Logging on or off
+# CONFIG_UIP_UDP - UDP support on or off
+# CONFIG_UIP_UDP_CHECKSUMS - UDP checksums on or off
+# CONFIG_UIP_UDP_CONNS - The maximum amount of concurrent UDP connections
+# CONFIG_UIP_STATISTICS - uIP statistics on or off
+# CONFIG_UIP_PINGADDRCONF - Use "ping" packet for setting IP address
+# CONFIG_UIP_RECEIVE_WINDOW - The size of the advertised receiver's window
+# CONFIG_UIP_ARPTAB_SIZE - The size of the ARP table
+# CONFIG_UIP_BROADCAST - Broadcast support
+# CONFIG_UIP_LLH_LEN - The link level header length
+# CONFIG_UIP_EXTERNAL_BUFFER - Incoming packet buffer (uip_buf) is defined externally
+# CONFIG_UIP_FWCACHE_SIZE - number of packets to remember when looking for duplicates
+CONFIG_NET_UIP=n
+CONFIG_NET_UIP_IPv6=n
+CONFIG_UIP_MAX_CONNECTIONS=40
+CONFIG_UIP_MAX_LISTENPORTS=40
+CONFIG_UIP_BUFFER_SIZE=420
+CONFIG_UIP_LOGGING=y
+CONFIG_UIP_UDP=n
+CONFIG_UIP_UDP_CHECKSUMS=y
+#CONFIG_UIP_UDP_CONNS=10
+CONFIG_UIP_STATISTICS=y
+#CONFIG_UIP_PINGADDRCONF=0
+#CONFIG_UIP_RECEIVE_WINDOW=
+#CONFIG_UIP_ARPTAB_SIZE=8
+CONFIG_UIP_BROADCAST=n
+#CONFIG_UIP_LLH_LEN=14
+CONFIG_UIP_EXTERNAL_BUFFER=n
+#CONFIG_UIP_FWCACHE_SIZE=2
+
+#
+# UIP Network Utilities
+# CONFIG_UIP_DHCP_LIGHT - Reduces size of DHCP
+# CONFIG_UIP_RESOLV_ENTRIES - Number of resolver entries
+CONFIG_UIP_DHCP_LIGHT=n
+CONFIG_UIP_RESOLV_ENTRIES=4
+
+#
# Stack and heap information
#
# CONFIG_BOOT_FROM_FLASH - Some configurations support XIP