shell_uart.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SHELL_UART_H__
  7. #define SHELL_UART_H__
  8. #include <shell/shell.h>
  9. #include <sys/ring_buffer.h>
  10. #include <sys/atomic.h>
  11. #include "mgmt/mcumgr/smp_shell.h"
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. typedef void (* shell_uart_callback_t)(const uint8_t *data, uint32_t len, void *user_data);
  16. /** @brief Shell UART transport instance control block (RW data). */
  17. struct shell_uart_ctrl_blk {
  18. const struct device *dev;
  19. shell_transport_handler_t handler;
  20. void *context;
  21. atomic_t tx_busy;
  22. bool blocking_tx;
  23. #ifdef CONFIG_MCUMGR_SMP_SHELL
  24. struct smp_shell_data smp;
  25. #endif /* CONFIG_MCUMGR_SMP_SHELL */
  26. shell_uart_callback_t callback;
  27. void *user_data;
  28. };
  29. #ifdef CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN
  30. #define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) \
  31. RING_BUF_DECLARE(_name##_tx_ringbuf, _size)
  32. #define Z_UART_SHELL_RX_TIMER_DECLARE(_name) /* Empty */
  33. #define Z_UART_SHELL_TX_RINGBUF_PTR(_name) (&_name##_tx_ringbuf)
  34. #define Z_UART_SHELL_RX_TIMER_PTR(_name) NULL
  35. #else /* CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN */
  36. #define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) /* Empty */
  37. #define Z_UART_SHELL_RX_TIMER_DECLARE(_name) static struct k_timer _name##_timer
  38. #define Z_UART_SHELL_TX_RINGBUF_PTR(_name) NULL
  39. #define Z_UART_SHELL_RX_TIMER_PTR(_name) (&_name##_timer)
  40. #endif /* CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN */
  41. /** @brief Shell UART transport instance structure. */
  42. struct shell_uart {
  43. struct shell_uart_ctrl_blk *ctrl_blk;
  44. struct k_timer *timer;
  45. struct ring_buf *tx_ringbuf;
  46. struct ring_buf *rx_ringbuf;
  47. };
  48. /** @brief Macro for creating shell UART transport instance. */
  49. #define SHELL_UART_DEFINE(_name, _tx_ringbuf_size, _rx_ringbuf_size) \
  50. extern const struct shell_transport_api shell_uart_transport_api; \
  51. static struct shell_uart_ctrl_blk _name##_ctrl_blk; \
  52. Z_UART_SHELL_RX_TIMER_DECLARE(_name); \
  53. Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _tx_ringbuf_size); \
  54. RING_BUF_DECLARE(_name##_rx_ringbuf, _rx_ringbuf_size); \
  55. static const struct shell_uart _name##_shell_uart = { \
  56. .ctrl_blk = &_name##_ctrl_blk, \
  57. .timer = Z_UART_SHELL_RX_TIMER_PTR(_name), \
  58. .tx_ringbuf = Z_UART_SHELL_TX_RINGBUF_PTR(_name), \
  59. .rx_ringbuf = &_name##_rx_ringbuf, \
  60. }; \
  61. struct shell_transport _name = { \
  62. .api = &shell_uart_transport_api, \
  63. .ctx = (struct shell_uart *)&_name##_shell_uart \
  64. }
  65. /**
  66. * @brief This function provides pointer to shell uart backend instance.
  67. *
  68. * Function returns pointer to the shell uart instance. This instance can be
  69. * next used with shell_execute_cmd function in order to test commands behavior.
  70. *
  71. * @returns Pointer to the shell instance.
  72. */
  73. const struct shell *shell_backend_uart_get_ptr(void);
  74. /**
  75. * @brief register output backend
  76. *
  77. * @param callback callback function for output backend
  78. * @param user_data user-defined data
  79. *
  80. * @retval 0 on success else negative code.
  81. */
  82. int shell_uart_register_output_callback(shell_uart_callback_t callback, void *user_data);
  83. #ifdef __cplusplus
  84. }
  85. #endif
  86. #endif /* SHELL_UART_H__ */