include.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef INCLUDES_PRESENT
  2. #define INCLUDES_PRESENT
  3. #define DATA_RAM(x) __attribute__ ((section("x")));
  4. /*
  5. *********************************************************************************************************
  6. * STANDARD LIBRARIES
  7. *********************************************************************************************************
  8. */
  9. #include <stdarg.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <math.h>
  13. /*
  14. *********************************************************************************************************
  15. * LIBRARIES
  16. *********************************************************************************************************
  17. */
  18. /*
  19. *********************************************************************************************************
  20. * APP / BSP
  21. *********************************************************************************************************
  22. */
  23. #include "delay.h"
  24. /*
  25. *********************************************************************************************************
  26. * OS
  27. *********************************************************************************************************
  28. */
  29. #include <FreeRTOS.h>
  30. /*
  31. *********************************************************************************************************
  32. * ST
  33. *********************************************************************************************************
  34. */
  35. #include "gd32f30x.h"
  36. #include "gd32f30x_enet.h"
  37. #include "hd_eth.h"
  38. /*
  39. *********************************************************************************************************
  40. * INCLUDES END
  41. *********************************************************************************************************
  42. */
  43. #endif