udp.h 370 B

1234567891011121314151617181920
  1. /*!
  2. \file udp_echo.h
  3. \brief the header file of udp_echo
  4. */
  5. /*
  6. Copyright (C) 2017 GigaDevice
  7. 2017-07-28, V1.0.0, demo for GD32F30x
  8. */
  9. #ifndef UDP_ECHO_H
  10. #define UDP_ECHO_H
  11. /* function declarations */
  12. /* initialize the tcp_client application */
  13. int udp_log_start(void);
  14. void udp_log_close(void);
  15. int udp_send_printf(char *p);
  16. #endif /* UDP_ECHO_H */