gpio_sx1509b.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_SX1509B_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_SX1509B_H_
  8. #include <device.h>
  9. #include <drivers/gpio.h>
  10. /**
  11. * @brief Configure a pin for LED intensity.
  12. *
  13. * Configure a pin to be controlled by SX1509B LED driver using
  14. * the LED intensity functionality.
  15. * To get back normal GPIO funcionality, configure the pin using
  16. * the standard GPIO API.
  17. *
  18. * @param dev Pointer to the device structure for the driver instance.
  19. * @param pin Pin number.
  20. *
  21. * @retval 0 If successful.
  22. * @retval -EWOULDBLOCK if function is called from an ISR.
  23. * @retval -ERANGE if pin number is out of range.
  24. * @retval -EIO if I2C fails.
  25. */
  26. int sx1509b_led_intensity_pin_configure(const struct device *dev,
  27. gpio_pin_t pin);
  28. /**
  29. * @brief Set LED intensity of selected pin.
  30. *
  31. * @param dev Pointer to the device structure for the driver instance.
  32. * @param pin Pin number.
  33. * @param intensity_val Intensity value.
  34. *
  35. * @retval 0 If successful.
  36. * @retval -EIO if I2C fails.
  37. */
  38. int sx1509b_led_intensity_pin_set(const struct device *dev, gpio_pin_t pin,
  39. uint8_t intensity_val);
  40. #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_SX1509B_H_ */