Zephyr API Documentation  2.7.0-rc2
A Scalable Open Source RTOS
gpio_esp32.h
Go to the documentation of this file.
1/*
2 * SPDX-License-Identifier: Apache-2.0
3 */
4
5#ifndef ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_ESP32_H_
6#define ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_ESP32_H_
7
8static const char *gpio_esp32_get_gpio_for_pin(int pin)
9{
10 if (pin < 32) {
11#if defined(CONFIG_GPIO_ESP32_0)
12 return DT_LABEL(DT_INST(0, espressif_esp32_gpio));
13#else
14 return NULL;
15#endif /* CONFIG_GPIO_ESP32_0 */
16 }
17
18#if defined(CONFIG_GPIO_ESP32_1)
19 return DT_LABEL(DT_INST(1, espressif_esp32_gpio));
20#else
21 return NULL;
22#endif /* CONFIG_GPIO_ESP32_1 */
23}
24
25#endif /* ZEPHYR_INCLUDE_DRIVERS_GPIO_GPIO_ESP32_H_ */
static const char * gpio_esp32_get_gpio_for_pin(int pin)
Definition: gpio_esp32.h:8
#define DT_INST(inst, compat)
Get a node identifier for an instance of a compatible.
Definition: devicetree.h:305
#define DT_LABEL(node_id)
Equivalent to DT_PROP(node_id, label)
Definition: devicetree.h:652