vibrator.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for Vibration motor Drivers
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_VIBRATOR_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_VIBRATOR_H_
  12. #include <zephyr/types.h>
  13. #include <device.h>
  14. #include <sys/util.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. struct vibrat_driver_api {
  19. int (*start)(const struct device *dev, u32_t chan, u8_t dutycycle);
  20. int (*stop)(const struct device *dev, u32_t chan);
  21. int (*set_freq_param)(const struct device *dev, u32_t chan, u32_t freq);
  22. };
  23. /**
  24. * @brief Start vibration
  25. *
  26. * @param dev: Pointer to the device structure for the driver instance.
  27. * @param chan: the channel of vibrator corresponding to pwm chan.
  28. * @param dutycycle: Dutycycle of vibration strength from 0~100.
  29. * @return 0 on success, negative errno code on fail.
  30. */
  31. static inline int vibrat_start(const struct device *dev, u32_t chan, u8_t dutycycle)
  32. {
  33. const struct vibrat_driver_api *api = (const struct vibrat_driver_api *) dev->api;
  34. return api->start(dev, chan, dutycycle);
  35. }
  36. /**
  37. * @brief Stop vibration
  38. *
  39. * @param dev: Pointer to the device structure for the driver instance.
  40. * @param chan: the channel of vibrator corresponding to pwm chan.
  41. * @return 0 on success, negative errno code on fail.
  42. */
  43. static inline int vibrat_stop(const struct device *dev, u32_t chan)
  44. {
  45. const struct vibrat_driver_api *api = (const struct vibrat_driver_api *) dev->api;
  46. return api->stop(dev, chan);
  47. }
  48. /**
  49. * @brief Set input frequency parameter of vibrator
  50. *
  51. * @param dev: Pointer to the device structure for the driver instance.
  52. * @param chan: the channel of vibrator corresponding to pwm chan.
  53. * @param freq: the input pwm frequency.
  54. * @return 0 on success, negative errno code on fail.
  55. */
  56. static inline int vibrat_set_freq_param(const struct device *dev, u32_t chan, u32_t freq)
  57. {
  58. const struct vibrat_driver_api *api = (const struct vibrat_driver_api *) dev->api;
  59. return api->set_freq_param(dev, chan, freq);
  60. }
  61. #ifdef __cplusplus
  62. }
  63. #endif
  64. #endif