uart_pipe.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /** @file
  2. * @brief Pipe UART driver header file.
  3. *
  4. * A pipe UART driver that allows applications to handle all aspects of
  5. * received protocol data.
  6. */
  7. /*
  8. * Copyright (c) 2015 Intel Corporation
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_PIPE_H_
  13. #define ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_PIPE_H_
  14. #include <stdlib.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /** @brief Received data callback.
  19. *
  20. * This function is called when new data is received on UART. The off parameter
  21. * can be used to alter offset at which received data is stored. Typically,
  22. * when the complete data is received and a new buffer is provided off should
  23. * be set to 0.
  24. *
  25. * @param buf Buffer with received data.
  26. * @param off Data offset on next received and accumulated data length.
  27. *
  28. * @return Buffer to be used on next receive.
  29. */
  30. typedef uint8_t *(*uart_pipe_recv_cb)(uint8_t *buf, size_t *off);
  31. /** @brief Register UART application.
  32. *
  33. * This function is used to register new UART application.
  34. *
  35. * @param buf Initial buffer for received data.
  36. * @param len Size of buffer.
  37. * @param cb Callback to be called on data reception.
  38. */
  39. void uart_pipe_register(uint8_t *buf, size_t len, uart_pipe_recv_cb cb);
  40. /** @brief Send data over UART.
  41. *
  42. * This function is used to send data over UART.
  43. *
  44. * @param data Buffer with data to be send.
  45. * @param len Size of data.
  46. *
  47. * @return 0 on success or negative error
  48. */
  49. int uart_pipe_send(const uint8_t *data, int len);
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53. #endif /* ZEPHYR_INCLUDE_DRIVERS_CONSOLE_UART_PIPE_H_ */