smp_shell.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. * Copyright (c) 2019 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief Shell transport for the mcumgr SMP protocol.
  8. */
  9. #ifndef ZEPHYR_INCLUDE_MGMT_SMP_SHELL_H_
  10. #define ZEPHYR_INCLUDE_MGMT_SMP_SHELL_H_
  11. #include <zephyr/types.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #define SMP_SHELL_RX_BUF_SIZE 127
  16. /** @brief Data used by SMP shell */
  17. struct smp_shell_data {
  18. struct net_buf_pool *buf_pool;
  19. struct k_fifo buf_ready;
  20. struct net_buf *buf;
  21. atomic_t esc_state;
  22. };
  23. /**
  24. * @brief Attempt to process received bytes as part of an SMP frame.
  25. *
  26. * Called to scan buffer from the beginning and consume all bytes that are
  27. * part of SMP frame until frame or buffer ends.
  28. *
  29. * @param data SMP shell transfer data.
  30. * @param bytes Buffer with bytes to process
  31. * @param size Number of bytes to process
  32. *
  33. * @return number of bytes consumed by the SMP
  34. */
  35. size_t smp_shell_rx_bytes(struct smp_shell_data *data, const uint8_t *bytes,
  36. size_t size);
  37. /**
  38. * @brief Processes SMP data and executes command if full frame was received.
  39. *
  40. * This function should be called from thread context.
  41. *
  42. * @param data SMP shell transfer data.
  43. */
  44. void smp_shell_process(struct smp_shell_data *data);
  45. /**
  46. * @brief Initializes SMP transport over shell.
  47. *
  48. * This function should be called before feeding SMP transport with received
  49. * data.
  50. *
  51. * @return 0 on success
  52. */
  53. int smp_shell_init(void);
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif