lmp90xxx.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * Copyright (c) 2019 Vestas Wind Systems A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_ADC_LMP90XXX_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_ADC_LMP90XXX_H_
  8. #include <device.h>
  9. #include <drivers/gpio.h>
  10. /* LMP90xxx supports GPIO D0..D6 */
  11. #define LMP90XXX_GPIO_MAX 6
  12. int lmp90xxx_gpio_set_output(const struct device *dev, uint8_t pin);
  13. int lmp90xxx_gpio_set_input(const struct device *dev, uint8_t pin);
  14. int lmp90xxx_gpio_set_pin_value(const struct device *dev, uint8_t pin,
  15. bool value);
  16. int lmp90xxx_gpio_get_pin_value(const struct device *dev, uint8_t pin,
  17. bool *value);
  18. int lmp90xxx_gpio_port_get_raw(const struct device *dev,
  19. gpio_port_value_t *value);
  20. int lmp90xxx_gpio_port_set_masked_raw(const struct device *dev,
  21. gpio_port_pins_t mask,
  22. gpio_port_value_t value);
  23. int lmp90xxx_gpio_port_set_bits_raw(const struct device *dev,
  24. gpio_port_pins_t pins);
  25. int lmp90xxx_gpio_port_clear_bits_raw(const struct device *dev,
  26. gpio_port_pins_t pins);
  27. int lmp90xxx_gpio_port_toggle_bits(const struct device *dev,
  28. gpio_port_pins_t pins);
  29. #endif /* ZEPHYR_INCLUDE_DRIVERS_ADC_LMP90XXX_H_ */