uart_mcumgr.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright Runtime.io 2018. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. * @brief A driver for sending and receiving mcumgr packets over UART.
  8. *
  9. * @see include/mgmt/serial.h
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_MCUMGR_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_MCUMGR_H_
  13. #include <stdlib.h>
  14. #include <zephyr/types.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief Contains an mcumgr fragment received over UART.
  20. */
  21. struct uart_mcumgr_rx_buf {
  22. void *fifo_reserved; /* 1st word reserved for use by fifo */
  23. uint8_t data[CONFIG_UART_MCUMGR_RX_BUF_SIZE];
  24. int length;
  25. };
  26. /** @typedef uart_mcumgr_recv_fn
  27. * @brief Function that gets called when an mcumgr packet is received.
  28. *
  29. * Function that gets called when an mcumgr packet is received. This function
  30. * gets called in the interrupt context. Ownership of the specified buffer is
  31. * transferred to the callback when this function gets called.
  32. *
  33. * @param rx_buf A buffer containing the incoming mcumgr packet.
  34. */
  35. typedef void uart_mcumgr_recv_fn(struct uart_mcumgr_rx_buf *rx_buf);
  36. /**
  37. * @brief Sends an mcumgr packet over UART.
  38. *
  39. * @param data Buffer containing the mcumgr packet to send.
  40. * @param len The length of the buffer, in bytes.
  41. *
  42. * @return 0 on success; negative error code on failure.
  43. */
  44. int uart_mcumgr_send(const uint8_t *data, int len);
  45. /**
  46. * @brief Frees the supplied receive buffer.
  47. *
  48. * @param rx_buf The buffer to free.
  49. */
  50. void uart_mcumgr_free_rx_buf(struct uart_mcumgr_rx_buf *rx_buf);
  51. /**
  52. * @brief Registers an mcumgr UART receive handler.
  53. *
  54. * Configures the mcumgr UART driver to call the specified function when an
  55. * mcumgr request packet is received.
  56. *
  57. * @param cb The callback to execute when an mcumgr request
  58. * packet is received.
  59. */
  60. void uart_mcumgr_register(uart_mcumgr_recv_fn *cb);
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #endif