]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/lwIP_AVR32_UC3/lwipopts.h
Rename xTaskGetSystemState() uxTaskGetSystemState().
[freertos] / FreeRTOS / Demo / lwIP_AVR32_UC3 / lwipopts.h
1 /*This file has been prepared for Doxygen automatic documentation generation.*/\r
2 /*! \file *********************************************************************\r
3  *\r
4  * \brief lwIP configuration for AVR32 UC3.\r
5  *\r
6  * - Compiler:           GNU GCC for AVR32\r
7  * - Supported devices:  All AVR32 devices can be used.\r
8  * - AppNote:\r
9  *\r
10  * \author               Atmel Corporation: http://www.atmel.com \n\r
11  *                       Support and FAQ: http://support.atmel.no/\r
12  *\r
13  *****************************************************************************/\r
14 \r
15 /* Copyright (c) 2007, Atmel Corporation All rights reserved.\r
16  *\r
17  * Redistribution and use in source and binary forms, with or without\r
18  * modification, are permitted provided that the following conditions are met:\r
19  *\r
20  * 1. Redistributions of source code must retain the above copyright notice,\r
21  * this list of conditions and the following disclaimer.\r
22  *\r
23  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
24  * this list of conditions and the following disclaimer in the documentation\r
25  * and/or other materials provided with the distribution.\r
26  *\r
27  * 3. The name of ATMEL may not be used to endorse or promote products derived\r
28  * from this software without specific prior written permission.\r
29  *\r
30  * THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED\r
31  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
32  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND\r
33  * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,\r
34  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
35  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
36  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r
37  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r
39  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
40  */\r
41 \r
42 \r
43 \r
44 #ifndef __LWIPOPTS_H__\r
45 #define __LWIPOPTS_H__\r
46 \r
47 /* Include user defined options first */\r
48 #include "conf_eth.h"\r
49 // #include "lwip/debug.h"\r
50 \r
51 #define LWIP_PLATFORM_DIAG(x)   \r
52 #define LWIP_PLATFORM_ASSERT(x)   \r
53 \r
54 /* Define default values for unconfigured parameters. */\r
55 #define LWIP_NOASSERT 1 // To suppress some errors for now (no debug output)\r
56 \r
57 /* These two control is reclaimer functions should be compiled\r
58    in. Should always be turned on (1). */\r
59 #define MEM_RECLAIM             1\r
60 #define MEMP_RECLAIM            1\r
61 \r
62 \r
63 /* Platform specific locking */\r
64 \r
65 /*\r
66  * enable SYS_LIGHTWEIGHT_PROT in lwipopts.h if you want inter-task protection\r
67  * for certain critical regions during buffer allocation, deallocation and memory\r
68  * allocation and deallocation.\r
69  */\r
70 #define SYS_LIGHTWEIGHT_PROT            1\r
71 \r
72 /* ---------- Memory options ---------- */\r
73 // #define MEM_LIBC_MALLOC                 0\r
74 \r
75 /* MEM_ALIGNMENT: should be set to the alignment of the CPU for which\r
76    lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2\r
77    byte alignment -> define MEM_ALIGNMENT to 2. */\r
78 #define MEM_ALIGNMENT           4\r
79 \r
80 /* MEM_SIZE: the size of the heap memory. If the application will send\r
81 a lot of data that needs to be copied, this should be set high. */\r
82 #define MEM_SIZE                3 * 1024\r
83 \r
84 // #define MEMP_SANITY_CHECK       1\r
85 \r
86 /* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application\r
87    sends a lot of data out of ROM (or other static memory), this\r
88    should be set high. */\r
89 #define MEMP_NUM_PBUF           6\r
90 \r
91 /* Number of raw connection PCBs */\r
92 #define MEMP_NUM_RAW_PCB                1\r
93 \r
94 #if (TFTP_USED == 1)\r
95   /* ---------- UDP options ---------- */\r
96   #define LWIP_UDP                1\r
97   #define UDP_TTL                 255\r
98   /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One\r
99      per active UDP "connection". */\r
100 \r
101   #define MEMP_NUM_UDP_PCB        1\r
102 #else\r
103   /* ---------- UDP options ---------- */\r
104   #define LWIP_UDP                0\r
105   #define UDP_TTL                 0\r
106   /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One\r
107      per active UDP "connection". */\r
108 \r
109   #define MEMP_NUM_UDP_PCB        0\r
110 #endif\r
111 \r
112 /* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP\r
113    connections. */\r
114 #define MEMP_NUM_TCP_PCB        14\r
115 /* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP\r
116    connections. */\r
117 #define MEMP_NUM_TCP_PCB_LISTEN 2\r
118 /* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP\r
119    segments. */\r
120 #define MEMP_NUM_TCP_SEG        6\r
121 /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active\r
122    timeouts. */\r
123 #define MEMP_NUM_SYS_TIMEOUT    6\r
124 \r
125 /* The following four are used only with the sequential API and can be\r
126    set to 0 if the application only will use the raw API. */\r
127 /* MEMP_NUM_NETBUF: the number of struct netbufs. */\r
128 #define MEMP_NUM_NETBUF         3\r
129 /* MEMP_NUM_NETCONN: the number of struct netconns. */\r
130 #define MEMP_NUM_NETCONN        6\r
131 /* MEMP_NUM_APIMSG: the number of struct api_msg, used for\r
132    communication between the TCP/IP stack and the sequential\r
133    programs. */\r
134 #define MEMP_NUM_API_MSG        4\r
135 /* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used\r
136    for sequential API communication and incoming packets. Used in\r
137    src/api/tcpip.c. */\r
138 #define MEMP_NUM_TCPIP_MSG      4\r
139 \r
140 \r
141 /* ---------- Pbuf options ---------- */\r
142 /* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */\r
143 \r
144 #define PBUF_POOL_SIZE          6\r
145 \r
146 /* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */\r
147 \r
148 #define PBUF_POOL_BUFSIZE       500\r
149 \r
150 /* PBUF_LINK_HLEN: the number of bytes that should be allocated for a\r
151    link level header. */\r
152 #define PBUF_LINK_HLEN          16\r
153 \r
154 /* ---------- TCP options ---------- */\r
155 #define LWIP_TCP                1\r
156 #define TCP_TTL                 255\r
157 /* TCP receive window. */\r
158 #define TCP_WND                 1500\r
159 /* Controls if TCP should queue segments that arrive out of\r
160    order. Define to 0 if your device is low on memory. */\r
161 #define TCP_QUEUE_OOSEQ         1\r
162 \r
163 /* TCP Maximum segment size. */\r
164 #define TCP_MSS                 1500\r
165 \r
166 /* TCP sender buffer space (bytes). */\r
167 #define TCP_SND_BUF             2150\r
168 \r
169 /* TCP sender buffer space (pbufs). This must be at least = 2 *\r
170    TCP_SND_BUF/TCP_MSS for things to work. */\r
171 #define TCP_SND_QUEUELEN        6 * TCP_SND_BUF/TCP_MSS\r
172 \r
173 \r
174 \r
175 /* Maximum number of retransmissions of data segments. */\r
176 #define TCP_MAXRTX              12\r
177 \r
178 /* Maximum number of retransmissions of SYN segments. */\r
179 #define TCP_SYNMAXRTX           4\r
180 \r
181 /* ---------- ARP options ---------- */\r
182 #define ARP_TABLE_SIZE 10\r
183 #define ARP_QUEUEING 0\r
184 \r
185 /* ---------- IP options ---------- */\r
186 /* Define IP_FORWARD to 1 if you wish to have the ability to forward\r
187    IP packets across network interfaces. If you are going to run lwIP\r
188    on a device with only one network interface, define this to 0. */\r
189 #define IP_FORWARD              0\r
190 \r
191 /* If defined to 1, IP options are allowed (but not parsed). If\r
192    defined to 0, all packets with IP options are dropped. */\r
193 #define IP_OPTIONS              1\r
194 \r
195 /* ---------- ICMP options ---------- */\r
196 #define ICMP_TTL                255\r
197 \r
198 \r
199 /* ---------- DHCP options ---------- */\r
200 /* Define LWIP_DHCP to 1 if you want DHCP configuration of\r
201    interfaces. DHCP is not implemented in lwIP 0.5.1, however, so\r
202    turning this on does currently not work. */\r
203 #define LWIP_DHCP               0\r
204 \r
205 /* 1 if you want to do an ARP check on the offered address\r
206    (recommended). */\r
207 #define DHCP_DOES_ARP_CHECK     1\r
208 \r
209 #define TCPIP_THREAD_PRIO               lwipINTERFACE_TASK_PRIORITY\r
210 \r
211 /* ---------- Statistics options ---------- */\r
212 #define LWIP_STATS 1\r
213 \r
214 #define LWIP_STATS_DISPLAY 1\r
215 \r
216 #if LWIP_STATS\r
217 #define LINK_STATS 1\r
218 #define IP_STATS   1\r
219 #define ICMP_STATS 1\r
220 #define UDP_STATS  1\r
221 #define TCP_STATS  1\r
222 #define MEM_STATS  1\r
223 #define MEMP_STATS 1\r
224 #define PBUF_STATS 1\r
225 #define SYS_STATS  1\r
226 #endif /* STATS */\r
227 \r
228 \r
229 #endif /* __LWIPOPTS_H__ */\r