/* ********************************************************************************************************* * EXAMPLE CODE * * (c) Copyright 2003-2013; Micrium, Inc.; Weston, FL * * All rights reserved. Protected by international copyright laws. * Knowledge of the source code may NOT be used to develop a similar product. * Please help us continue to provide the Embedded community with the finest * software available. Your honesty is greatly appreciated. ********************************************************************************************************* */ /* ********************************************************************************************************* * * MASTER INCLUDES * * ST Microelectronics STM32 * on the * * Micrium uC-Eval-STM32F107 * Evaluation Board * * Filename : includes.h * Version : V1.00 * Programmer(s) : EHS ********************************************************************************************************* */ #ifndef INCLUDES_PRESENT #define INCLUDES_PRESENT #define DATA_RAM(x) __attribute__ ((section("x"))); /* ********************************************************************************************************* * STANDARD LIBRARIES ********************************************************************************************************* */ #include #include #include #include /* ********************************************************************************************************* * LIBRARIES ********************************************************************************************************* */ /* ********************************************************************************************************* * APP / BSP ********************************************************************************************************* */ #include "delay.h" /* ********************************************************************************************************* * OS ********************************************************************************************************* */ #include /* ********************************************************************************************************* * ST ********************************************************************************************************* */ #include "stm32f2xx.h" #include "stm32f2x7_eth.h" #include "hd_eth.h" /* ********************************************************************************************************* * INCLUDES END ********************************************************************************************************* */ #endif