main.h 376 B

12345678910111213141516171819202122232425
  1. /*!
  2. \file main.h
  3. \brief the header file of main
  4. */
  5. /*
  6. Copyright (C) 2017 GigaDevice
  7. 2017-07-28, V1.0.0, demo for GD32F30x
  8. */
  9. #ifndef MAIN_H
  10. #define MAIN_H
  11. #define USE_DHCP
  12. #include "gd32f30x.h"
  13. #include "stdint.h"
  14. #include "hd_eth.h"
  15. #include "FreeRTOS.h"
  16. #include "task.h"
  17. //SemaphoreHandle_t logMutex;
  18. extern char gatewayId[11];
  19. #endif /* MAIN_H */