]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/lwIP_Demo_Rowley_ARM7/lwipopts.h
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / lwIP_Demo_Rowley_ARM7 / lwipopts.h
1 /*\r
2  * Copyright (c) 2001-2003 Swedish Institute of Computer Science.\r
3  * All rights reserved. \r
4  * \r
5  * Redistribution and use in source and binary forms, with or without modification, \r
6  * are permitted provided that the following conditions are met:\r
7  *\r
8  * 1. Redistributions of source code must retain the above copyright notice,\r
9  *    this list of conditions and the following disclaimer.\r
10  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
11  *    this list of conditions and the following disclaimer in the documentation\r
12  *    and/or other materials provided with the distribution.\r
13  * 3. The name of the author may not be used to endorse or promote products\r
14  *    derived from this software without specific prior written permission. \r
15  *\r
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED \r
17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF \r
18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT \r
19  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, \r
20  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT \r
21  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS \r
22  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN \r
23  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING \r
24  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY \r
25  * OF SUCH DAMAGE.\r
26  *\r
27  * This file is part of the lwIP TCP/IP stack.\r
28  * \r
29  * Author: Adam Dunkels <adam@sics.se>\r
30  *\r
31  */\r
32 #ifndef __LWIPOPTS_H__\r
33 #define __LWIPOPTS_H__\r
34 \r
35 #define LWIP_NOASSERT 1 // To suppress some errors for now (no debug output)\r
36 #define SYS_LIGHTWEIGHT_PROT            1\r
37 \r
38 #define TCPIP_THREAD_PRIO       3\r
39 \r
40 /* ---------- Memory options ---------- */\r
41 /* MEM_ALIGNMENT: should be set to the alignment of the CPU for which\r
42    lwIP is compiled. 4 byte alignment -> define MEM_ALIGNMENT to 4, 2\r
43    byte alignment -> define MEM_ALIGNMENT to 2. */\r
44 #define MEM_ALIGNMENT           4\r
45 \r
46 /* MEM_SIZE: the size of the heap memory. If the application will send\r
47 a lot of data that needs to be copied, this should be set high. */\r
48 #define MEM_SIZE                2000\r
49 \r
50 /* MEMP_NUM_PBUF: the number of memp struct pbufs. If the application\r
51    sends a lot of data out of ROM (or other static memory), this\r
52    should be set high. */\r
53 #define MEMP_NUM_PBUF           20\r
54 /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One\r
55    per active UDP "connection". */\r
56 #define MEMP_NUM_UDP_PCB        4\r
57 /* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP\r
58    connections. */\r
59 #define MEMP_NUM_TCP_PCB        10\r
60 /* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP\r
61    connections. */\r
62 #define MEMP_NUM_TCP_PCB_LISTEN 8\r
63 /* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP\r
64    segments. */\r
65 #define MEMP_NUM_TCP_SEG        8\r
66 /* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active\r
67    timeouts. */\r
68 #define MEMP_NUM_SYS_TIMEOUT    3\r
69 \r
70 \r
71 /* The following four are used only with the sequential API and can be\r
72    set to 0 if the application only will use the raw API. */\r
73 /* MEMP_NUM_NETBUF: the number of struct netbufs. */\r
74 #define MEMP_NUM_NETBUF         4\r
75 /* MEMP_NUM_NETCONN: the number of struct netconns. */\r
76 #define MEMP_NUM_NETCONN        4\r
77 /* MEMP_NUM_APIMSG: the number of struct api_msg, used for\r
78    communication between the TCP/IP stack and the sequential\r
79    programs. */\r
80 #define MEMP_NUM_API_MSG        8\r
81 /* MEMP_NUM_TCPIPMSG: the number of struct tcpip_msg, which is used\r
82    for sequential API communication and incoming packets. Used in\r
83    src/api/tcpip.c. */\r
84 #define MEMP_NUM_TCPIP_MSG      8\r
85 \r
86 /* These two control is reclaimer functions should be compiled\r
87    in. Should always be turned on (1). */\r
88 #define MEM_RECLAIM             1\r
89 #define MEMP_RECLAIM            1\r
90 \r
91 /* ---------- Pbuf options ---------- */\r
92 /* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */\r
93 #define PBUF_POOL_SIZE          4\r
94 \r
95 /* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */\r
96 #define PBUF_POOL_BUFSIZE       1500\r
97 \r
98 /* PBUF_LINK_HLEN: the number of bytes that should be allocated for a\r
99    link level header. */\r
100 #define PBUF_LINK_HLEN          16\r
101 \r
102 /* ---------- TCP options ---------- */\r
103 #define LWIP_TCP                1\r
104 #define TCP_TTL                 255\r
105 \r
106 /* Controls if TCP should queue segments that arrive out of\r
107    order. Define to 0 if your device is low on memory. */\r
108 #define TCP_QUEUE_OOSEQ         1\r
109 \r
110 /* TCP Maximum segment size. */\r
111 #define TCP_MSS                 1500\r
112 \r
113 /* TCP sender buffer space (bytes). */\r
114 #define TCP_SND_BUF             1500\r
115 \r
116 /* TCP sender buffer space (pbufs). This must be at least = 2 *\r
117    TCP_SND_BUF/TCP_MSS for things to work. */\r
118 #define TCP_SND_QUEUELEN        6 * TCP_SND_BUF/TCP_MSS\r
119 \r
120 /* TCP receive window. */\r
121 #define TCP_WND                 1500\r
122 \r
123 /* Maximum number of retransmissions of data segments. */\r
124 #define TCP_MAXRTX              12\r
125 \r
126 /* Maximum number of retransmissions of SYN segments. */\r
127 #define TCP_SYNMAXRTX           4\r
128 \r
129 /* ---------- ARP options ---------- */\r
130 #define ARP_TABLE_SIZE 10\r
131 #define ARP_QUEUEING 1\r
132 \r
133 /* ---------- IP options ---------- */\r
134 /* Define IP_FORWARD to 1 if you wish to have the ability to forward\r
135    IP packets across network interfaces. If you are going to run lwIP\r
136    on a device with only one network interface, define this to 0. */\r
137 #define IP_FORWARD              1\r
138 \r
139 /* If defined to 1, IP options are allowed (but not parsed). If\r
140    defined to 0, all packets with IP options are dropped. */\r
141 #define IP_OPTIONS              1\r
142 \r
143 /* ---------- ICMP options ---------- */\r
144 #define ICMP_TTL                255\r
145 \r
146 \r
147 /* ---------- DHCP options ---------- */\r
148 /* Define LWIP_DHCP to 1 if you want DHCP configuration of\r
149    interfaces. DHCP is not implemented in lwIP 0.5.1, however, so\r
150    turning this on does currently not work. */\r
151 #define LWIP_DHCP               0\r
152 \r
153 /* 1 if you want to do an ARP check on the offered address\r
154    (recommended). */\r
155 #define DHCP_DOES_ARP_CHECK     1\r
156 \r
157 /* ---------- UDP options ---------- */\r
158 #define LWIP_UDP                1\r
159 #define UDP_TTL                 255\r
160 \r
161 \r
162 /* ---------- Statistics options ---------- */\r
163 #define STATS\r
164 \r
165 #ifdef STATS\r
166 #define LINK_STATS 1\r
167 #define IP_STATS   1\r
168 #define ICMP_STATS 1\r
169 #define UDP_STATS  1\r
170 #define TCP_STATS  1\r
171 #define MEM_STATS  1\r
172 #define MEMP_STATS 1\r
173 #define PBUF_STATS 1\r
174 #define SYS_STATS  1\r
175 #endif /* STATS */\r
176 \r
177 #define LWIP_PROVIDE_ERRNO 1\r
178 \r
179 #endif /* __LWIPOPTS_H__ */\r