/*! \file netconf.h \brief the header file of netconf */ /* Copyright (C) 2017 GigaDevice 2017-07-28, V1.0.0, demo for GD32F30x */ #ifndef NETCONF_H #define NETCONF_H /* function declarations */ /* initializes the LwIP stack */ void lwip_stack_init(void); /* dhcp_task */ void dhcp_task(void * pvParameters); extern volatile int dhcp_done; void DHCP_open(void); void DHCP_close(void); void set_ipaddr(char* buf); #endif /* NETCONF_H */