1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- *********************************************************************************************************
- * 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 <stdarg.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- /*
- *********************************************************************************************************
- * LIBRARIES
- *********************************************************************************************************
- */
- /*
- *********************************************************************************************************
- * APP / BSP
- *********************************************************************************************************
- */
- #include "delay.h"
- /*
- *********************************************************************************************************
- * OS
- *********************************************************************************************************
- */
- #include <ucos_ii.h>
- /*
- *********************************************************************************************************
- * ST
- *********************************************************************************************************
- */
- #include "stm32f2xx.h"
- #include "stm32f2x7_eth.h"
- #include "hd_eth.h"
- /*
- *********************************************************************************************************
- * INCLUDES END
- *********************************************************************************************************
- */
- #endif
|