12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #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 <FreeRTOS.h>
- /*
- *********************************************************************************************************
- * ST
- *********************************************************************************************************
- */
- #include "gd32f30x.h"
- #include "gd32f30x_enet.h"
- #include "hd_eth.h"
- /*
- *********************************************************************************************************
- * INCLUDES END
- *********************************************************************************************************
- */
- #endif
|