gpio_esp32.h 563 B

12345678910111213141516171819202122232425
  1. /*
  2. * SPDX-License-Identifier: Apache-2.0
  3. */
  4. #ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_ESP32_H_
  5. #define ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_ESP32_H_
  6. static const char *gpio_esp32_get_gpio_for_pin(int pin)
  7. {
  8. if (pin < 32) {
  9. #if defined(CONFIG_GPIO_ESP32_0)
  10. return DT_LABEL(DT_INST(0, espressif_esp32_gpio));
  11. #else
  12. return NULL;
  13. #endif /* CONFIG_GPIO_ESP32_0 */
  14. }
  15. #if defined(CONFIG_GPIO_ESP32_1)
  16. return DT_LABEL(DT_INST(1, espressif_esp32_gpio));
  17. #else
  18. return NULL;
  19. #endif /* CONFIG_GPIO_ESP32_1 */
  20. }
  21. #endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_ESP32_H_ */