uart_console.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* uart_console.h - uart console driver */
  2. /*
  3. * Copyright (c) 2011, 2014 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_CONSOLE_H_
  8. #define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_CONSOLE_H_
  9. #include <kernel.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /** @brief Register uart input processing
  14. *
  15. * Input processing is started when string is typed in the console.
  16. * Carriage return is translated to NULL making string always NULL
  17. * terminated. Application before calling register function need to
  18. * initialize two fifo queues mentioned below.
  19. *
  20. * @param avail k_fifo queue keeping available input slots
  21. * @param lines k_fifo queue of entered lines which to be processed
  22. * in the application code.
  23. * @param completion callback for tab completion of entered commands
  24. *
  25. * @return N/A
  26. */
  27. void uart_register_input(struct k_fifo *avail, struct k_fifo *lines,
  28. uint8_t (*completion)(char *str, uint8_t len));
  29. /*
  30. * Allows having debug hooks in the console driver for handling incoming
  31. * control characters, and letting other ones through.
  32. */
  33. #ifdef CONFIG_UART_CONSOLE_DEBUG_SERVER_HOOKS
  34. #define UART_CONSOLE_DEBUG_HOOK_HANDLED 1
  35. #define UART_CONSOLE_OUT_DEBUG_HOOK_SIG(x) int(x)(char c)
  36. typedef UART_CONSOLE_OUT_DEBUG_HOOK_SIG(uart_console_out_debug_hook_t);
  37. void uart_console_out_debug_hook_install(
  38. uart_console_out_debug_hook_t *hook);
  39. typedef int (*uart_console_in_debug_hook_t) (uint8_t);
  40. void uart_console_in_debug_hook_install(uart_console_in_debug_hook_t hook);
  41. #endif
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45. #endif /* ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_CONSOLE_H_ */