includes.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. *********************************************************************************************************
  3. * EXAMPLE CODE
  4. *
  5. * (c) Copyright 2003-2013; Micrium, Inc.; Weston, FL
  6. *
  7. * All rights reserved. Protected by international copyright laws.
  8. * Knowledge of the source code may NOT be used to develop a similar product.
  9. * Please help us continue to provide the Embedded community with the finest
  10. * software available. Your honesty is greatly appreciated.
  11. *********************************************************************************************************
  12. */
  13. /*
  14. *********************************************************************************************************
  15. *
  16. * MASTER INCLUDES
  17. *
  18. * ST Microelectronics STM32
  19. * on the
  20. *
  21. * Micrium uC-Eval-STM32F107
  22. * Evaluation Board
  23. *
  24. * Filename : includes.h
  25. * Version : V1.00
  26. * Programmer(s) : EHS
  27. *********************************************************************************************************
  28. */
  29. #ifndef INCLUDES_PRESENT
  30. #define INCLUDES_PRESENT
  31. #define DATA_RAM(x) __attribute__ ((section("x")));
  32. /*
  33. *********************************************************************************************************
  34. * STANDARD LIBRARIES
  35. *********************************************************************************************************
  36. */
  37. #include <stdarg.h>
  38. #include <stdio.h>
  39. #include <stdlib.h>
  40. #include <math.h>
  41. /*
  42. *********************************************************************************************************
  43. * LIBRARIES
  44. *********************************************************************************************************
  45. */
  46. /*
  47. *********************************************************************************************************
  48. * APP / BSP
  49. *********************************************************************************************************
  50. */
  51. #include "delay.h"
  52. /*
  53. *********************************************************************************************************
  54. * OS
  55. *********************************************************************************************************
  56. */
  57. #include <ucos_ii.h>
  58. /*
  59. *********************************************************************************************************
  60. * ST
  61. *********************************************************************************************************
  62. */
  63. #include "stm32f2xx.h"
  64. #include "stm32f2x7_eth.h"
  65. #include "hd_eth.h"
  66. /*
  67. *********************************************************************************************************
  68. * INCLUDES END
  69. *********************************************************************************************************
  70. */
  71. #endif