Eduardo Pellini / F7_Ethernet_Pellini

Fork of F7_Ethernet by Dieter Graef

Committer:
DieterGraef
Date:
Sun Jun 19 16:23:40 2016 +0000
Revision:
0:d26c1b55cfca
Ethernet Library for Nucleo stm32f746ZG and Disco stm32f746NG  works under arm and gcc environment

Who changed what in which revision?

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