shell_uart.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. extern const struct shell_transport_api shell_uart_transport_api;
  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. };
  27. #ifdef CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN
  28. #define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) \
  29. RING_BUF_DECLARE(_name##_tx_ringbuf, _size)
  30. #define Z_UART_SHELL_RX_TIMER_DECLARE(_name) /* Empty */
  31. #define Z_UART_SHELL_TX_RINGBUF_PTR(_name) (&_name##_tx_ringbuf)
  32. #define Z_UART_SHELL_RX_TIMER_PTR(_name) NULL
  33. #else /* CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN */
  34. #define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) /* Empty */
  35. #define Z_UART_SHELL_RX_TIMER_DECLARE(_name) static struct k_timer _name##_timer
  36. #define Z_UART_SHELL_TX_RINGBUF_PTR(_name) NULL
  37. #define Z_UART_SHELL_RX_TIMER_PTR(_name) (&_name##_timer)
  38. #endif /* CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN */
  39. /** @brief Shell UART transport instance structure. */
  40. struct shell_uart {
  41. struct shell_uart_ctrl_blk *ctrl_blk;
  42. struct k_timer *timer;
  43. struct ring_buf *tx_ringbuf;
  44. struct ring_buf *rx_ringbuf;
  45. };
  46. /** @brief Macro for creating shell UART transport instance. */
  47. #define SHELL_UART_DEFINE(_name, _tx_ringbuf_size, _rx_ringbuf_size) \
  48. static struct shell_uart_ctrl_blk _name##_ctrl_blk; \
  49. Z_UART_SHELL_RX_TIMER_DECLARE(_name); \
  50. Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _tx_ringbuf_size); \
  51. RING_BUF_DECLARE(_name##_rx_ringbuf, _rx_ringbuf_size); \
  52. static const struct shell_uart _name##_shell_uart = { \
  53. .ctrl_blk = &_name##_ctrl_blk, \
  54. .timer = Z_UART_SHELL_RX_TIMER_PTR(_name), \
  55. .tx_ringbuf = Z_UART_SHELL_TX_RINGBUF_PTR(_name), \
  56. .rx_ringbuf = &_name##_rx_ringbuf, \
  57. }; \
  58. struct shell_transport _name = { \
  59. .api = &shell_uart_transport_api, \
  60. .ctx = (struct shell_uart *)&_name##_shell_uart \
  61. }
  62. /**
  63. * @brief This function provides pointer to shell uart backend instance.
  64. *
  65. * Function returns pointer to the shell uart instance. This instance can be
  66. * next used with shell_execute_cmd function in order to test commands behavior.
  67. *
  68. * @returns Pointer to the shell instance.
  69. */
  70. const struct shell *shell_backend_uart_get_ptr(void);
  71. #ifdef __cplusplus
  72. }
  73. #endif
  74. #endif /* SHELL_UART_H__ */