cdc_acm.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (c) 2020 Google LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public APIs for the CDC ACM class driver
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_UART_CDC_ACM_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_UART_CDC_ACM_H_
  12. #include <errno.h>
  13. #include <device.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif /* __cplusplus */
  17. /**
  18. * @typedef cdc_dte_rate_callback_t
  19. * @brief A function that is called when the USB host changes the baud
  20. * rate.
  21. *
  22. * @param dev Device struct for the CDC ACM device.
  23. * @param rate New USB baud rate
  24. */
  25. typedef void (*cdc_dte_rate_callback_t)(const struct device *dev,
  26. uint32_t rate);
  27. /**
  28. * @brief Set the callback for dwDTERate SetLineCoding requests.
  29. *
  30. * The callback is invoked when the USB host changes the baud rate.
  31. *
  32. * @note This function is available only when
  33. * CONFIG_CDC_ACM_DTE_RATE_CALLBACK_SUPPORT is enabled.
  34. *
  35. * @param dev CDC ACM device structure.
  36. * @param callback Event handler.
  37. *
  38. * @return 0 on success.
  39. */
  40. int cdc_acm_dte_rate_callback_set(const struct device *dev,
  41. cdc_dte_rate_callback_t callback);
  42. #ifdef __cplusplus
  43. }
  44. #endif /* __cplusplus */
  45. #endif /* ZEPHYR_INCLUDE_DRIVERS_UART_CDC_ACM_H_ */