1 /*This file has been prepared for Doxygen automatic documentation generation.*/
2 /*! \file *********************************************************************
4 * \brief lwIP configuration for AVR32 UC3.
6 * - Compiler: GNU GCC for AVR32
7 * - Supported devices: All AVR32 devices can be used.
10 * \author Atmel Corporation: http://www.atmel.com \n
11 * Support and FAQ: http://support.atmel.no/
13 *****************************************************************************/
15 /* Copyright (c) 2007, Atmel Corporation All rights reserved.
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are met:
20 * 1. Redistributions of source code must retain the above copyright notice,
21 * this list of conditions and the following disclaimer.
23 * 2. Redistributions in binary form must reproduce the above copyright notice,
24 * this list of conditions and the following disclaimer in the documentation
25 * and/or other materials provided with the distribution.
27 * 3. The name of ATMEL may not be used to endorse or promote products derived
28 * from this software without specific prior written permission.
30 * THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED
31 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
32 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND
33 * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,
34 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 #ifndef __LWIPOPTS_H__
45 #define __LWIPOPTS_H__
47 /* Include user defined options first */
49 // #include "lwip/debug.h"
51 #define LWIP_PLATFORM_DIAG(x)
52 #define LWIP_PLATFORM_ASSERT(x)
54 /* Define default values for unconfigured parameters. */
55 #define LWIP_NOASSERT 1 // To suppress some errors for now (no debug output)
57 /* These two control is reclaimer functions should be compiled
58 in. Should always be turned on (1). */
60 #define MEMP_RECLAIM 1
63 /* Platform specific locking */
66 * enable SYS_LIGHTWEIGHT_PROT in lwipopts.h if you want inter-task protection
67 * for certain critical regions during buffer allocation, deallocation and memory
68 * allocation and deallocation.
70 #define SYS_LIGHTWEIGHT_PROT 1
72 /* ---------- Memory options ---------- */
73 // #define MEM_LIBC_MALLOC 0
75 /* MEM_ALIGNMENT: should be set to the alignment of the CPU for which
76 lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2
77 byte alignment -> define MEM_ALIGNMENT to 2. */
78 #define MEM_ALIGNMENT 4
80 /* MEM_SIZE: the size of the heap memory. If the application will send
81 a lot of data that needs to be copied, this should be set high. */
82 #define MEM_SIZE 3 * 1024
84 // #define MEMP_SANITY_CHECK 1
86 /* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application
87 sends a lot of data out of ROM (or other static memory), this
88 should be set high. */
89 #define MEMP_NUM_PBUF 6
91 /* Number of raw connection PCBs */
92 #define MEMP_NUM_RAW_PCB 1
95 /* ---------- UDP options ---------- */
98 /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
99 per active UDP "connection". */
101 #define MEMP_NUM_UDP_PCB 1
103 /* ---------- UDP options ---------- */
106 /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
107 per active UDP "connection". */
109 #define MEMP_NUM_UDP_PCB 0
112 /* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP
114 #define MEMP_NUM_TCP_PCB 14
115 /* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP
117 #define MEMP_NUM_TCP_PCB_LISTEN 2
118 /* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP
120 #define MEMP_NUM_TCP_SEG 6
121 /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active
123 #define MEMP_NUM_SYS_TIMEOUT 6
125 /* The following four are used only with the sequential API and can be
126 set to 0 if the application only will use the raw API. */
127 /* MEMP_NUM_NETBUF: the number of struct netbufs. */
128 #define MEMP_NUM_NETBUF 3
129 /* MEMP_NUM_NETCONN: the number of struct netconns. */
130 #define MEMP_NUM_NETCONN 6
131 /* MEMP_NUM_APIMSG: the number of struct api_msg, used for
132 communication between the TCP/IP stack and the sequential
134 #define MEMP_NUM_API_MSG 4
135 /* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used
136 for sequential API communication and incoming packets. Used in
138 #define MEMP_NUM_TCPIP_MSG 4
141 /* ---------- Pbuf options ---------- */
142 /* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */
144 #define PBUF_POOL_SIZE 6
146 /* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */
148 #define PBUF_POOL_BUFSIZE 500
150 /* PBUF_LINK_HLEN: the number of bytes that should be allocated for a
151 link level header. */
152 #define PBUF_LINK_HLEN 16
154 /* ---------- TCP options ---------- */
157 /* TCP receive window. */
159 /* Controls if TCP should queue segments that arrive out of
160 order. Define to 0 if your device is low on memory. */
161 #define TCP_QUEUE_OOSEQ 1
163 /* TCP Maximum segment size. */
166 /* TCP sender buffer space (bytes). */
167 #define TCP_SND_BUF 2150
169 /* TCP sender buffer space (pbufs). This must be at least = 2 *
170 TCP_SND_BUF/TCP_MSS for things to work. */
171 #define TCP_SND_QUEUELEN 6 * TCP_SND_BUF/TCP_MSS
175 /* Maximum number of retransmissions of data segments. */
176 #define TCP_MAXRTX 12
178 /* Maximum number of retransmissions of SYN segments. */
179 #define TCP_SYNMAXRTX 4
181 /* ---------- ARP options ---------- */
182 #define ARP_TABLE_SIZE 10
183 #define ARP_QUEUEING 0
185 /* ---------- IP options ---------- */
186 /* Define IP_FORWARD to 1 if you wish to have the ability to forward
187 IP packets across network interfaces. If you are going to run lwIP
188 on a device with only one network interface, define this to 0. */
191 /* If defined to 1, IP options are allowed (but not parsed). If
192 defined to 0, all packets with IP options are dropped. */
195 /* ---------- ICMP options ---------- */
199 /* ---------- DHCP options ---------- */
200 /* Define LWIP_DHCP to 1 if you want DHCP configuration of
201 interfaces. DHCP is not implemented in lwIP 0.5.1, however, so
202 turning this on does currently not work. */
205 /* 1 if you want to do an ARP check on the offered address
207 #define DHCP_DOES_ARP_CHECK 1
209 #define TCPIP_THREAD_PRIO lwipINTERFACE_TASK_PRIORITY
211 /* ---------- Statistics options ---------- */
214 #define LWIP_STATS_DISPLAY 1
229 #endif /* __LWIPOPTS_H__ */