uart_usb.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /** @file
  2. * @brief USB UART driver header file.
  3. *
  4. * Public API for USB UART driver
  5. *
  6. */
  7. /*
  8. * Copyright (c) 2021 Actions Semiconductor Co., Ltd
  9. *
  10. * SPDX-License-Identifier: Apache-2.0
  11. */
  12. #ifndef __UART_USB_H__
  13. #define __UART_USB_H__
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /** @brief Notify UART USB send data completely event.
  18. *
  19. * This function is used to notify the data have been send out completely by USB CDC ACM.
  20. *
  21. * @param void.
  22. */
  23. void uart_usb_update_tx_done(void);
  24. /** @brief Send data over USB UART.
  25. *
  26. * This function is used to send data over USB UART.
  27. *
  28. * @param data Buffer with data to be send.
  29. * @param len Size of data.
  30. *
  31. * @return 0 on success or negative error
  32. */
  33. int uart_usb_send(const u8_t *data, int len);
  34. /** @brief receive data over USB UART.
  35. *
  36. * This function is used to receive data over USB UART.
  37. *
  38. * @param data Buffer with data to be received.
  39. * @param max len size of data.
  40. *
  41. * @return positive value for received data length or negative error
  42. */
  43. int uart_usb_receive(u8_t *data, int max_len);
  44. /** @brief Initialize the USB UART environment.
  45. *
  46. * This function is used to initialize USB UART.
  47. *
  48. */
  49. int uart_usb_init(void);
  50. /** @brief Uninitialize the USB UART environment.
  51. *
  52. * This function is used to uninitialize USB UART.
  53. *
  54. */
  55. void uart_usb_uninit(void);
  56. /** @brief check USB UART is enable
  57. *
  58. * @return true usb uart is enable false is disable
  59. *
  60. */
  61. bool uart_usb_is_enabled(void);
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65. #endif /* __UART_USB_H__ */