OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [lwIP_AVR32_UC3/] [lwipopts.h] - Blame information for rev 583

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 583 jeremybenn
/*This file has been prepared for Doxygen automatic documentation generation.*/
2
/*! \file *********************************************************************
3
 *
4
 * \brief lwIP configuration for AVR32 UC3.
5
 *
6
 * - Compiler:           GNU GCC for AVR32
7
 * - Supported devices:  All AVR32 devices can be used.
8
 * - AppNote:
9
 *
10
 * \author               Atmel Corporation: http://www.atmel.com \n
11
 *                       Support and FAQ: http://support.atmel.no/
12
 *
13
 *****************************************************************************/
14
 
15
/* Copyright (c) 2007, Atmel Corporation All rights reserved.
16
 *
17
 * Redistribution and use in source and binary forms, with or without
18
 * modification, are permitted provided that the following conditions are met:
19
 *
20
 * 1. Redistributions of source code must retain the above copyright notice,
21
 * this list of conditions and the following disclaimer.
22
 *
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.
26
 *
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.
29
 *
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.
40
 */
41
 
42
 
43
 
44
#ifndef __LWIPOPTS_H__
45
#define __LWIPOPTS_H__
46
 
47
/* Include user defined options first */
48
#include "conf_eth.h"
49
// #include "lwip/debug.h"
50
 
51
#define LWIP_PLATFORM_DIAG(x)   
52
#define LWIP_PLATFORM_ASSERT(x)   
53
 
54
/* Define default values for unconfigured parameters. */
55
#define LWIP_NOASSERT 1 // To suppress some errors for now (no debug output)
56
 
57
/* These two control is reclaimer functions should be compiled
58
   in. Should always be turned on (1). */
59
#define MEM_RECLAIM             1
60
#define MEMP_RECLAIM            1
61
 
62
 
63
/* Platform specific locking */
64
 
65
/*
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.
69
 */
70
#define SYS_LIGHTWEIGHT_PROT            1
71
 
72
/* ---------- Memory options ---------- */
73
// #define MEM_LIBC_MALLOC                 0
74
 
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
79
 
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
83
 
84
// #define MEMP_SANITY_CHECK       1
85
 
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
90
 
91
/* Number of raw connection PCBs */
92
#define MEMP_NUM_RAW_PCB                1
93
 
94
#if (TFTP_USED == 1)
95
  /* ---------- UDP options ---------- */
96
  #define LWIP_UDP                1
97
  #define UDP_TTL                 255
98
  /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
99
     per active UDP "connection". */
100
 
101
  #define MEMP_NUM_UDP_PCB        1
102
#else
103
  /* ---------- UDP options ---------- */
104
  #define LWIP_UDP                0
105
  #define UDP_TTL                 0
106
  /* MEMP_NUM_UDP_PCB: the number of UDP protocol control blocks. One
107
     per active UDP "connection". */
108
 
109
  #define MEMP_NUM_UDP_PCB        0
110
#endif
111
 
112
/* MEMP_NUM_TCP_PCB: the number of simulatenously active TCP
113
   connections. */
114
#define MEMP_NUM_TCP_PCB        14
115
/* MEMP_NUM_TCP_PCB_LISTEN: the number of listening TCP
116
   connections. */
117
#define MEMP_NUM_TCP_PCB_LISTEN 2
118
/* MEMP_NUM_TCP_SEG: the number of simultaneously queued TCP
119
   segments. */
120
#define MEMP_NUM_TCP_SEG        6
121
/* MEMP_NUM_SYS_TIMEOUT: the number of simulateously active
122
   timeouts. */
123
#define MEMP_NUM_SYS_TIMEOUT    6
124
 
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
133
   programs. */
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
137
   src/api/tcpip.c. */
138
#define MEMP_NUM_TCPIP_MSG      4
139
 
140
 
141
/* ---------- Pbuf options ---------- */
142
/* PBUF_POOL_SIZE: the number of buffers in the pbuf pool. */
143
 
144
#define PBUF_POOL_SIZE          6
145
 
146
/* PBUF_POOL_BUFSIZE: the size of each pbuf in the pbuf pool. */
147
 
148
#define PBUF_POOL_BUFSIZE       500
149
 
150
/* PBUF_LINK_HLEN: the number of bytes that should be allocated for a
151
   link level header. */
152
#define PBUF_LINK_HLEN          16
153
 
154
/* ---------- TCP options ---------- */
155
#define LWIP_TCP                1
156
#define TCP_TTL                 255
157
/* TCP receive window. */
158
#define TCP_WND                 1500
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
162
 
163
/* TCP Maximum segment size. */
164
#define TCP_MSS                 1500
165
 
166
/* TCP sender buffer space (bytes). */
167
#define TCP_SND_BUF             2150
168
 
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
172
 
173
 
174
 
175
/* Maximum number of retransmissions of data segments. */
176
#define TCP_MAXRTX              12
177
 
178
/* Maximum number of retransmissions of SYN segments. */
179
#define TCP_SYNMAXRTX           4
180
 
181
/* ---------- ARP options ---------- */
182
#define ARP_TABLE_SIZE 10
183
#define ARP_QUEUEING 0
184
 
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. */
189
#define IP_FORWARD              0
190
 
191
/* If defined to 1, IP options are allowed (but not parsed). If
192
   defined to 0, all packets with IP options are dropped. */
193
#define IP_OPTIONS              1
194
 
195
/* ---------- ICMP options ---------- */
196
#define ICMP_TTL                255
197
 
198
 
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. */
203
#define LWIP_DHCP               0
204
 
205
/* 1 if you want to do an ARP check on the offered address
206
   (recommended). */
207
#define DHCP_DOES_ARP_CHECK     1
208
 
209
#define TCPIP_THREAD_PRIO               lwipINTERFACE_TASK_PRIORITY
210
 
211
/* ---------- Statistics options ---------- */
212
#define LWIP_STATS 1
213
 
214
#define LWIP_STATS_DISPLAY 1
215
 
216
#if LWIP_STATS
217
#define LINK_STATS 1
218
#define IP_STATS   1
219
#define ICMP_STATS 1
220
#define UDP_STATS  1
221
#define TCP_STATS  1
222
#define MEM_STATS  1
223
#define MEMP_STATS 1
224
#define PBUF_STATS 1
225
#define SYS_STATS  1
226
#endif /* STATS */
227
 
228
 
229
#endif /* __LWIPOPTS_H__ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.