net.h 245 B

1234567891011121314
  1. #ifndef __NET_H
  2. #define __NET_H
  3. #include "fly_param.h"
  4. #include "includes.h"
  5. #include "interface.h"
  6. #include "lwip/api.h"
  7. #include "lwip/netif.h"
  8. #include "lwip/sockets.h"
  9. #include "netconf.h"
  10. #define TCP_PORT 8080
  11. void net_task(void);
  12. #endif