Loading...
Searching...
No Matches
gpio.h
1#ifndef DRIVER_GPIO_H
2#define DRIVER_GPIO_H
3
4#ifdef ESP_IDF_CODE
5
6#include_next "driver/gpio.h"
7
8#else
9
10#include "hal/gpio_types.h"
11
12#define GPIO_PIN_COUNT (SOC_GPIO_PIN_COUNT)
13
14#endif
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif /* DRIVER_GPIO_H */