web_terminal.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * This file is part of the Web Terminal Library.
  3. *
  4. * Copyright (c) 2017, Armink, <armink.ztl@gmail.com>
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining
  7. * a copy of this software and associated documentation files (the
  8. * 'Software'), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sublicense, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice shall be
  15. * included in all copies or substantial portions of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  20. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  21. * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  22. * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  23. * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. *
  25. * Function: It is an head file for this library. You can see all be called functions.
  26. * Created on: 2017-08-20
  27. */
  28. #ifndef _WEB_TERMINAL_H_
  29. #define _WEB_TERMINAL_H_
  30. #include <rtthread.h>
  31. #if defined(PKG_WEBTERMINAL_PORT)
  32. #define WEB_TERMINAL_PORT PKG_WEBTERMINAL_PORT
  33. #else
  34. #define WEB_TERMINAL_PORT "8090"
  35. #endif
  36. #define WT_SW_VERSION "0.1.2"
  37. void web_terminal_init(void);
  38. void web_terminal_start(void);
  39. void web_terminal_stop(void);
  40. #endif /* _WEB_TERMINAL_H_ */