pwm.h 730 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (c) 2019 Vestas Wind Systems A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_PWM_PWM_H_
  7. #define ZEPHYR_INCLUDE_DT_BINDINGS_PWM_PWM_H_
  8. /**
  9. * @name PWM polarity flags
  10. * The `PWM_POLARITY_*` flags are used with pwm_pin_set_cycles(),
  11. * pwm_pin_set_usec(), pwm_pin_set_nsec() or pwm_pin_configure_capture() to
  12. * specify the polarity of a PWM pin.
  13. * @{
  14. */
  15. /** PWM pin normal polarity (active-high pulse). */
  16. #define PWM_POLARITY_NORMAL (0 << 0)
  17. /** PWM pin inverted polarity (active-low pulse). */
  18. #define PWM_POLARITY_INVERTED (1 << 0)
  19. /** @cond INTERNAL_HIDDEN */
  20. #define PWM_POLARITY_MASK 0x1
  21. /** @endcond */
  22. /** @} */
  23. #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_PWM_PWM_H_ */