| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2001-2004 Swedish Institute of Computer Science. | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Redistribution and use in source and binary forms, with or without modification, | 
					
						
							|  |  |  |  * are permitted provided that the following conditions are met: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 1. Redistributions of source code must retain the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  * 2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |  *    this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |  *    and/or other materials provided with the distribution. | 
					
						
							|  |  |  |  * 3. The name of the author may not be used to endorse or promote products | 
					
						
							|  |  |  |  *    derived from this software without specific prior written permission. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED | 
					
						
							|  |  |  |  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | 
					
						
							|  |  |  |  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT | 
					
						
							|  |  |  |  * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
					
						
							|  |  |  |  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT | 
					
						
							|  |  |  |  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | 
					
						
							|  |  |  |  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | 
					
						
							|  |  |  |  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | 
					
						
							|  |  |  |  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY | 
					
						
							|  |  |  |  * OF SUCH DAMAGE. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This file is part of the lwIP TCP/IP stack. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Author: Adam Dunkels <adam@sics.se> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __LWIPOPTS_H_
 | 
					
						
							|  |  |  | #define __LWIPOPTS_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Platform
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | #define NO_SYS                          0 // 1 : No RTOS
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define NO_SYS_NO_TIMERS                0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Memory
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | #define SYS_LIGHTWEIGHT_PROT            0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MEM_ALIGNMENT                   4
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* the number of buffers in the pbuf pool. In zero-copy mode, these buffers are
 | 
					
						
							|  |  |  |    located in peripheral RAM. In copied mode, they are located in internal IRAM */ | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define PBUF_POOL_SIZE                  5
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define ETH_PAD_SIZE                    0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define IP_SOF_BROADCAST                1
 | 
					
						
							|  |  |  | #define IP_SOF_BROADCAST_RECV           1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Checksum Options
 | 
					
						
							|  |  |  | //  1 : Checksum is generated in software
 | 
					
						
							|  |  |  | //  0 : Checksum is generated in hardware
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | /* The ethernet FCS is performed in hardware. The IP, TCP, and UDP
 | 
					
						
							|  |  |  |    CRCs still need to be done in hardware. */ | 
					
						
							|  |  |  | #define CHECKSUM_GEN_IP                 1
 | 
					
						
							|  |  |  | #define CHECKSUM_GEN_UDP                1
 | 
					
						
							|  |  |  | #define CHECKSUM_GEN_TCP                1
 | 
					
						
							|  |  |  | #define CHECKSUM_CHECK_IP               1
 | 
					
						
							|  |  |  | #define CHECKSUM_CHECK_UDP              1
 | 
					
						
							|  |  |  | #define CHECKSUM_CHECK_TCP              1
 | 
					
						
							|  |  |  | #define LWIP_CHECKSUM_ON_COPY           1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Use LWIP version of htonx() to allow generic functionality across
 | 
					
						
							|  |  |  |    all platforms. If you are using the Cortex Mx devices, you might | 
					
						
							|  |  |  |    be able to use the Cortex __rev instruction instead. */ | 
					
						
							|  |  |  | #define LWIP_PLATFORM_BYTESWAP          0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Non-static memory, used with DMA pool */ | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define MEM_SIZE                        (6 * 1024)
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Protocols
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define LWIP_RAW                        0
 | 
					
						
							|  |  |  | #define LWIP_DHCP                       0
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define LWIP_SNMP                       0
 | 
					
						
							|  |  |  | #define LWIP_IGMP                       0
 | 
					
						
							|  |  |  | #define LWIP_DNS                        0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define LWIP_UDP                        0
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define LWIP_TCP                        1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Hostname can be used */ | 
					
						
							|  |  |  | #define LWIP_NETIF_HOSTNAME             1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define LWIP_BROADCAST_PING             1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // TCP Options
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | /* MSS should match the hardware packet size */ | 
					
						
							|  |  |  | #define TCP_MSS                         1460
 | 
					
						
							|  |  |  | #define TCP_SND_BUF                     (2 * TCP_MSS)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // API
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define LWIP_SOCKET                     0
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define LWIP_NETCONN                    1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define MEMP_NUM_SYS_TIMEOUT            100 // FIXME check settings
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // Statistics options
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | #define LWIP_STATS                      0
 | 
					
						
							|  |  |  | #define LINK_STATS                      0
 | 
					
						
							|  |  |  | #define LWIP_STATS_DISPLAY              0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // DEBUG options
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define LWIP_DEBUG
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | /* There are more *_DEBUG options that can be selected.
 | 
					
						
							|  |  |  |    See opts.h. Make sure that LWIP_DEBUG is defined when | 
					
						
							|  |  |  |    building the code to use debug. */ | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define TCP_DEBUG                       LWIP_DBG_TRACE
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define ETHARP_DEBUG                    LWIP_DBG_OFF
 | 
					
						
							|  |  |  | #define PBUF_DEBUG                      LWIP_DBG_OFF
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define IP_DEBUG                        LWIP_DBG_TRACE
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define TCPIP_DEBUG                     LWIP_DBG_OFF
 | 
					
						
							|  |  |  | #define DHCP_DEBUG                      LWIP_DBG_OFF
 | 
					
						
							|  |  |  | #define UDP_DEBUG                       LWIP_DBG_OFF
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* This define is custom for the LPC EMAC driver. Enabled it to
 | 
					
						
							|  |  |  |    get debug messages for the driver. */ | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define EMAC_DEBUG                      LWIP_DBG_TRACE
 | 
					
						
							|  |  |  | #define UDP_LPC_EMAC                    LWIP_DBG_OFF
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | // FreeRTOS
 | 
					
						
							|  |  |  | //--------------------------------------------------------------------+
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define DEFAULT_THREAD_PRIO             (tskIDLE_PRIORITY + 1)
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define DEFAULT_THREAD_STACKSIZE        (256)
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define DEFAULT_ACCEPTMBOX_SIZE         6
 | 
					
						
							|  |  |  | #define DEFAULT_ACCEPTMBOX_SIZE         6
 | 
					
						
							|  |  |  | #define DEFAULT_TCP_RECVMBOX_SIZE       6
 | 
					
						
							|  |  |  | #define DEFAULT_UDP_RECVMBOX_SIZE       6
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* TCPIP thread must run at higher priority than MAC threads! */ | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define TCPIP_THREAD_PRIO               (configMAX_PRIORITIES - 1)
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | #define TCPIP_THREAD_STACKSIZE          (512)
 | 
					
						
							| 
									
										
										
										
											2013-09-18 21:08:48 +07:00
										 |  |  | #define TCPIP_MBOX_SIZE                 3
 | 
					
						
							| 
									
										
										
										
											2013-09-16 16:38:46 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* __LWIPOPTS_H_ */
 |