console.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*
  2. * Copyright (c) 2017 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_CONSOLE_CONSOLE_H_
  7. #define ZEPHYR_INCLUDE_CONSOLE_CONSOLE_H_
  8. #include <sys/types.h>
  9. #include <zephyr/types.h>
  10. #include <kernel.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /** @brief Initialize console device.
  15. *
  16. * This function should be called once to initialize pull-style
  17. * access to console via console_getchar() function and buffered
  18. * output using console_putchar() function. This function supersedes,
  19. * and incompatible with, callback (push-style) console handling
  20. * (via console_input_fn callback, etc.).
  21. *
  22. * @return 0 on success, error code (<0) otherwise
  23. */
  24. int console_init(void);
  25. /**
  26. * @brief Read data from console.
  27. *
  28. * @param dummy ignored, present to follow read() prototype
  29. * @param buf buffer to read data to
  30. * @param size maximum number of bytes to read
  31. * @return >0, number of actually read bytes (can be less than size param)
  32. * =0, in case of EOF
  33. * <0, in case of error (e.g. -EAGAIN if timeout expired). errno
  34. * variable is also set.
  35. */
  36. ssize_t console_read(void *dummy, void *buf, size_t size);
  37. /**
  38. * @brief Write data to console.
  39. *
  40. * @param dummy ignored, present to follow write() prototype
  41. * @param buf buffer to write data to
  42. * @param size maximum number of bytes to write
  43. * @return =>0, number of actually written bytes (can be less than size param)
  44. * <0, in case of error (e.g. -EAGAIN if timeout expired). errno
  45. * variable is also set.
  46. */
  47. ssize_t console_write(void *dummy, const void *buf, size_t size);
  48. /** @brief Get next char from console input buffer.
  49. *
  50. * Return next input character from console. If no characters available,
  51. * this function will block. This function is similar to ANSI C
  52. * getchar() function and is intended to ease porting of existing
  53. * software. Before this function can be used, console_init()
  54. * should be called once. This function is incompatible with native
  55. * Zephyr callback-based console input processing, shell subsystem,
  56. * or console_getline().
  57. *
  58. * @return 0-255: a character read, including control characters.
  59. * <0: error occurred.
  60. */
  61. int console_getchar(void);
  62. /** @brief Output a char to console (buffered).
  63. *
  64. * Puts a character into console output buffer. It will be sent
  65. * to a console asynchronously, e.g. using an IRQ handler.
  66. *
  67. * @return <0 on error, otherwise 0.
  68. */
  69. int console_putchar(char c);
  70. /** @brief Initialize console_getline() call.
  71. *
  72. * This function should be called once to initialize pull-style
  73. * access to console via console_getline() function. This function
  74. * supersedes, and incompatible with, callback (push-style) console
  75. * handling (via console_input_fn callback, etc.).
  76. *
  77. * @return N/A
  78. */
  79. void console_getline_init(void);
  80. /** @brief Get next line from console input buffer.
  81. *
  82. * Return next input line from console. Until full line is available,
  83. * this function will block. This function is similar to ANSI C
  84. * gets() function (except a line is returned in system-owned buffer,
  85. * and system takes care of the buffer overflow checks) and is
  86. * intended to ease porting of existing software. Before this function
  87. * can be used, console_getline_init() should be called once. This
  88. * function is incompatible with native Zephyr callback-based console
  89. * input processing, shell subsystem, or console_getchar().
  90. *
  91. * @return A pointer to a line read, not including EOL character(s).
  92. * A line resides in a system-owned buffer, so an application
  93. * should finish any processing of this line immediately
  94. * after console_getline() call, or the buffer can be reused.
  95. */
  96. char *console_getline(void);
  97. #ifdef __cplusplus
  98. }
  99. #endif
  100. #endif /* ZEPHYR_INCLUDE_CONSOLE_CONSOLE_H_ */