Dependents:   RTnoV3 RTnoV3_LED RTnoV3_Template RTnoV3_ADC ... more

Committer:
sherckuith
Date:
Sat Dec 31 11:25:27 2011 +0000
Revision:
0:479ce5546098
Ethernet

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sherckuith 0:479ce5546098 1 /*
sherckuith 0:479ce5546098 2 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
sherckuith 0:479ce5546098 3 * All rights reserved.
sherckuith 0:479ce5546098 4 *
sherckuith 0:479ce5546098 5 * Redistribution and use in source and binary forms, with or without modification,
sherckuith 0:479ce5546098 6 * are permitted provided that the following conditions are met:
sherckuith 0:479ce5546098 7 *
sherckuith 0:479ce5546098 8 * 1. Redistributions of source code must retain the above copyright notice,
sherckuith 0:479ce5546098 9 * this list of conditions and the following disclaimer.
sherckuith 0:479ce5546098 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
sherckuith 0:479ce5546098 11 * this list of conditions and the following disclaimer in the documentation
sherckuith 0:479ce5546098 12 * and/or other materials provided with the distribution.
sherckuith 0:479ce5546098 13 * 3. The name of the author may not be used to endorse or promote products
sherckuith 0:479ce5546098 14 * derived from this software without specific prior written permission.
sherckuith 0:479ce5546098 15 *
sherckuith 0:479ce5546098 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
sherckuith 0:479ce5546098 17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
sherckuith 0:479ce5546098 18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
sherckuith 0:479ce5546098 19 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
sherckuith 0:479ce5546098 20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
sherckuith 0:479ce5546098 21 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
sherckuith 0:479ce5546098 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
sherckuith 0:479ce5546098 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
sherckuith 0:479ce5546098 24 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
sherckuith 0:479ce5546098 25 * OF SUCH DAMAGE.
sherckuith 0:479ce5546098 26 *
sherckuith 0:479ce5546098 27 * This file is part of the lwIP TCP/IP stack.
sherckuith 0:479ce5546098 28 *
sherckuith 0:479ce5546098 29 * Author: Adam Dunkels <adam@sics.se>
sherckuith 0:479ce5546098 30 *
sherckuith 0:479ce5546098 31 */
sherckuith 0:479ce5546098 32 #ifndef __LWIP_INIT_H__
sherckuith 0:479ce5546098 33 #define __LWIP_INIT_H__
sherckuith 0:479ce5546098 34
sherckuith 0:479ce5546098 35 #include "lwip/opt.h"
sherckuith 0:479ce5546098 36
sherckuith 0:479ce5546098 37 #ifdef __cplusplus
sherckuith 0:479ce5546098 38 extern "C" {
sherckuith 0:479ce5546098 39 #endif
sherckuith 0:479ce5546098 40
sherckuith 0:479ce5546098 41 /** X.x.x: Major version of the stack */
sherckuith 0:479ce5546098 42 #define LWIP_VERSION_MAJOR 1U
sherckuith 0:479ce5546098 43 /** x.X.x: Minor version of the stack */
sherckuith 0:479ce5546098 44 #define LWIP_VERSION_MINOR 4U
sherckuith 0:479ce5546098 45 /** x.x.X: Revision of the stack */
sherckuith 0:479ce5546098 46 #define LWIP_VERSION_REVISION 0U
sherckuith 0:479ce5546098 47 /** For release candidates, this is set to 1..254
sherckuith 0:479ce5546098 48 * For official releases, this is set to 255 (LWIP_RC_RELEASE)
sherckuith 0:479ce5546098 49 * For development versions (CVS), this is set to 0 (LWIP_RC_DEVELOPMENT) */
sherckuith 0:479ce5546098 50 #define LWIP_VERSION_RC 1U
sherckuith 0:479ce5546098 51
sherckuith 0:479ce5546098 52 /** LWIP_VERSION_RC is set to LWIP_RC_RELEASE for official releases */
sherckuith 0:479ce5546098 53 #define LWIP_RC_RELEASE 255U
sherckuith 0:479ce5546098 54 /** LWIP_VERSION_RC is set to LWIP_RC_DEVELOPMENT for CVS versions */
sherckuith 0:479ce5546098 55 #define LWIP_RC_DEVELOPMENT 0U
sherckuith 0:479ce5546098 56
sherckuith 0:479ce5546098 57 #define LWIP_VERSION_IS_RELEASE (LWIP_VERSION_RC == LWIP_RC_RELEASE)
sherckuith 0:479ce5546098 58 #define LWIP_VERSION_IS_DEVELOPMENT (LWIP_VERSION_RC == LWIP_RC_DEVELOPMENT)
sherckuith 0:479ce5546098 59 #define LWIP_VERSION_IS_RC ((LWIP_VERSION_RC != LWIP_RC_RELEASE) && (LWIP_VERSION_RC != LWIP_RC_DEVELOPMENT))
sherckuith 0:479ce5546098 60
sherckuith 0:479ce5546098 61 /** Provides the version of the stack */
sherckuith 0:479ce5546098 62 #define LWIP_VERSION (LWIP_VERSION_MAJOR << 24 | LWIP_VERSION_MINOR << 16 | \
sherckuith 0:479ce5546098 63 LWIP_VERSION_REVISION << 8 | LWIP_VERSION_RC)
sherckuith 0:479ce5546098 64
sherckuith 0:479ce5546098 65 /* Modules initialization */
sherckuith 0:479ce5546098 66 void lwip_init(void);
sherckuith 0:479ce5546098 67
sherckuith 0:479ce5546098 68 #ifdef __cplusplus
sherckuith 0:479ce5546098 69 }
sherckuith 0:479ce5546098 70 #endif
sherckuith 0:479ce5546098 71
sherckuith 0:479ce5546098 72 #endif /* __LWIP_INIT_H__ */