console.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (c) 2017 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_CONSOLE_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_CONSOLE_H_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #define CONSOLE_MAX_LINE_LEN CONFIG_CONSOLE_INPUT_MAX_LINE_LEN
  12. /** @brief Console input representation
  13. *
  14. * This struct is used to represent an input line from a console.
  15. * Recorded line must be NULL terminated.
  16. */
  17. struct console_input {
  18. /** FIFO uses first word itself, reserve space */
  19. intptr_t _unused;
  20. /** Whether this is an mcumgr command */
  21. uint8_t is_mcumgr : 1;
  22. /** Buffer where the input line is recorded */
  23. char line[CONSOLE_MAX_LINE_LEN];
  24. };
  25. /** @brief Console input processing handler signature
  26. *
  27. * Input processing is started when string is typed in the console.
  28. * Carriage return is translated to NULL making string always NULL
  29. * terminated. Application before calling register function need to
  30. * initialize two fifo queues mentioned below.
  31. *
  32. * @param avail k_fifo queue keeping available input slots
  33. * @param lines k_fifo queue of entered lines which to be processed
  34. * in the application code.
  35. * @param completion callback for tab completion of entered commands
  36. *
  37. * @return N/A
  38. */
  39. typedef void (*console_input_fn)(struct k_fifo *avail, struct k_fifo *lines,
  40. uint8_t (*completion)(char *str, uint8_t len));
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* ZEPHYR_INCLUDE_DRIVERS_CONSOLE_CONSOLE_H_ */