netconf.h 355 B

123456789101112131415161718192021
  1. /*!
  2. \file netconf.h
  3. \brief the header file of netconf
  4. */
  5. /*
  6. Copyright (C) 2017 GigaDevice
  7. 2017-07-28, V1.0.0, demo for GD32F30x
  8. */
  9. #ifndef NETCONF_H
  10. #define NETCONF_H
  11. /* function declarations */
  12. /* initializes the LwIP stack */
  13. void lwip_stack_init(void);
  14. /* dhcp_task */
  15. void dhcp_task(void * pvParameters);
  16. #endif /* NETCONF_H */