gpio_arch_common.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2019 Gunar Schorcht
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
20 #ifndef GPIO_ARCH_COMMON_H
21 #define GPIO_ARCH_COMMON_H
22 
23 #ifndef DOXYGEN
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
30 #define GPIO_MODE_INPUT GPIO_IN
31 #define GPIO_MODE_OUTPUT GPIO_OUT
32 #define GPIO_MODE_INPUT_OUTPUT GPIO_IN_OUT
33 
37 typedef enum
38 {
39  _GPIO = 0,
40 #ifdef MCU_ESP32
41  _ADC,
42  _CAN,
43  _DAC,
44  _EMAC,
45 #endif /* MCU_ESP32 */
46  _I2C,
47  _PWM,
48  _SPI,
49  _SPIF,
50  _UART,
51  _NOT_EXIST
52 } gpio_pin_usage_t;
53 
54 
62 int gpio_set_pin_usage(gpio_t pin, gpio_pin_usage_t usage);
63 
70 gpio_pin_usage_t gpio_get_pin_usage(gpio_t pin);
71 
78 const char* gpio_get_pin_usage_str(gpio_t pin);
79 
80 #ifdef __cplusplus
81 }
82 #endif
83 
84 #endif /* DOXYGEN */
85 #endif /* GPIO_ARCH_COMMON_H */