|
|
@@ -0,0 +1,129 @@
|
|
|
+/*
|
|
|
+ * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
|
|
|
+ *
|
|
|
+ * SPDX-License-Identifier: Apache-2.0
|
|
|
+ */
|
|
|
+
|
|
|
+/**
|
|
|
+ * NOTE: this is not the original header file from the hal component. It is a stripped-down copy to support mocking.
|
|
|
+ */
|
|
|
+
|
|
|
+#pragma once
|
|
|
+
|
|
|
+#ifdef __cplusplus
|
|
|
+extern "C" {
|
|
|
+#endif
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_NUM_NC = -1, /*!< Use to signal not connected to S/W */
|
|
|
+ GPIO_NUM_0 = 0, /*!< GPIO0, input and output */
|
|
|
+ GPIO_NUM_1 = 1, /*!< GPIO1, input and output */
|
|
|
+ GPIO_NUM_2 = 2, /*!< GPIO2, input and output */
|
|
|
+ GPIO_NUM_3 = 3, /*!< GPIO3, input and output */
|
|
|
+ GPIO_NUM_4 = 4, /*!< GPIO4, input and output */
|
|
|
+ GPIO_NUM_5 = 5, /*!< GPIO5, input and output */
|
|
|
+ GPIO_NUM_6 = 6, /*!< GPIO6, input and output */
|
|
|
+ GPIO_NUM_7 = 7, /*!< GPIO7, input and output */
|
|
|
+ GPIO_NUM_8 = 8, /*!< GPIO8, input and output */
|
|
|
+ GPIO_NUM_9 = 9, /*!< GPIO9, input and output */
|
|
|
+ GPIO_NUM_10 = 10, /*!< GPIO10, input and output */
|
|
|
+ GPIO_NUM_11 = 11, /*!< GPIO11, input and output */
|
|
|
+ GPIO_NUM_12 = 12, /*!< GPIO12, input and output */
|
|
|
+ GPIO_NUM_13 = 13, /*!< GPIO13, input and output */
|
|
|
+ GPIO_NUM_14 = 14, /*!< GPIO14, input and output */
|
|
|
+ GPIO_NUM_15 = 15, /*!< GPIO15, input and output */
|
|
|
+ GPIO_NUM_16 = 16, /*!< GPIO16, input and output */
|
|
|
+ GPIO_NUM_17 = 17, /*!< GPIO17, input and output */
|
|
|
+ GPIO_NUM_18 = 18, /*!< GPIO18, input and output */
|
|
|
+ GPIO_NUM_19 = 19, /*!< GPIO19, input and output */
|
|
|
+ GPIO_NUM_20 = 20, /*!< GPIO20, input and output */
|
|
|
+ GPIO_NUM_21 = 21, /*!< GPIO21, input and output */
|
|
|
+ GPIO_NUM_22 = 22, /*!< GPIO22, input and output */
|
|
|
+ GPIO_NUM_23 = 23, /*!< GPIO23, input and output */
|
|
|
+ GPIO_NUM_25 = 25, /*!< GPIO25, input and output */
|
|
|
+ GPIO_NUM_26 = 26, /*!< GPIO26, input and output */
|
|
|
+ GPIO_NUM_27 = 27, /*!< GPIO27, input and output */
|
|
|
+ GPIO_NUM_28 = 28, /*!< GPIO28, input and output */
|
|
|
+ GPIO_NUM_29 = 29, /*!< GPIO29, input and output */
|
|
|
+ GPIO_NUM_30 = 30, /*!< GPIO30, input and output */
|
|
|
+ GPIO_NUM_31 = 31, /*!< GPIO31, input and output */
|
|
|
+ GPIO_NUM_32 = 32, /*!< GPIO32, input and output */
|
|
|
+ GPIO_NUM_33 = 33, /*!< GPIO33, input and output */
|
|
|
+ GPIO_NUM_34 = 34, /*!< GPIO34, input mode only */
|
|
|
+ GPIO_NUM_35 = 35, /*!< GPIO35, input mode only */
|
|
|
+ GPIO_NUM_36 = 36, /*!< GPIO36, input mode only */
|
|
|
+ GPIO_NUM_37 = 37, /*!< GPIO37, input mode only */
|
|
|
+ GPIO_NUM_38 = 38, /*!< GPIO38, input mode only */
|
|
|
+ GPIO_NUM_39 = 39, /*!< GPIO39, input mode only */
|
|
|
+ GPIO_NUM_MAX,
|
|
|
+/** @endcond */
|
|
|
+} gpio_num_t;
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_INTR_DISABLE = 0, /*!< Disable GPIO interrupt */
|
|
|
+ GPIO_INTR_POSEDGE = 1, /*!< GPIO interrupt type : rising edge */
|
|
|
+ GPIO_INTR_NEGEDGE = 2, /*!< GPIO interrupt type : falling edge */
|
|
|
+ GPIO_INTR_ANYEDGE = 3, /*!< GPIO interrupt type : both rising and falling edge */
|
|
|
+ GPIO_INTR_LOW_LEVEL = 4, /*!< GPIO interrupt type : input low level trigger */
|
|
|
+ GPIO_INTR_HIGH_LEVEL = 5, /*!< GPIO interrupt type : input high level trigger */
|
|
|
+ GPIO_INTR_MAX,
|
|
|
+} gpio_int_type_t;
|
|
|
+
|
|
|
+/** @cond */
|
|
|
+#define GPIO_MODE_DEF_DISABLE (0)
|
|
|
+#define GPIO_MODE_DEF_INPUT (1) ///< bit mask for input
|
|
|
+#define GPIO_MODE_DEF_OUTPUT (2) ///< bit mask for output
|
|
|
+#define GPIO_MODE_DEF_OD (3) ///< bit mask for OD mode
|
|
|
+/** @endcond */
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_MODE_DISABLE = GPIO_MODE_DEF_DISABLE, /*!< GPIO mode : disable input and output */
|
|
|
+ GPIO_MODE_INPUT = GPIO_MODE_DEF_INPUT, /*!< GPIO mode : input only */
|
|
|
+ GPIO_MODE_OUTPUT = GPIO_MODE_DEF_OUTPUT, /*!< GPIO mode : output only mode */
|
|
|
+ GPIO_MODE_OUTPUT_OD = ((GPIO_MODE_DEF_OUTPUT) | (GPIO_MODE_DEF_OD)), /*!< GPIO mode : output only with open-drain mode */
|
|
|
+ GPIO_MODE_INPUT_OUTPUT_OD = ((GPIO_MODE_DEF_INPUT) | (GPIO_MODE_DEF_OUTPUT) | (GPIO_MODE_DEF_OD)), /*!< GPIO mode : output and input with open-drain mode*/
|
|
|
+ GPIO_MODE_INPUT_OUTPUT = ((GPIO_MODE_DEF_INPUT) | (GPIO_MODE_DEF_OUTPUT)), /*!< GPIO mode : output and input mode */
|
|
|
+} gpio_mode_t;
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_PULLUP_DISABLE = 0x0, /*!< Disable GPIO pull-up resistor */
|
|
|
+ GPIO_PULLUP_ENABLE = 0x1, /*!< Enable GPIO pull-up resistor */
|
|
|
+} gpio_pullup_t;
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_PULLDOWN_DISABLE = 0x0, /*!< Disable GPIO pull-down resistor */
|
|
|
+ GPIO_PULLDOWN_ENABLE = 0x1, /*!< Enable GPIO pull-down resistor */
|
|
|
+} gpio_pulldown_t;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @brief Configuration parameters of GPIO pad for gpio_config function
|
|
|
+ */
|
|
|
+typedef struct {
|
|
|
+ uint64_t pin_bit_mask; /*!< GPIO pin: set with bit mask, each bit maps to a GPIO */
|
|
|
+ gpio_mode_t mode; /*!< GPIO mode: set input/output mode */
|
|
|
+ gpio_pullup_t pull_up_en; /*!< GPIO pull-up */
|
|
|
+ gpio_pulldown_t pull_down_en; /*!< GPIO pull-down */
|
|
|
+ gpio_int_type_t intr_type; /*!< GPIO interrupt type */
|
|
|
+} gpio_config_t;
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_PULLUP_ONLY, /*!< Pad pull up */
|
|
|
+ GPIO_PULLDOWN_ONLY, /*!< Pad pull down */
|
|
|
+ GPIO_PULLUP_PULLDOWN, /*!< Pad pull up + pull down*/
|
|
|
+ GPIO_FLOATING, /*!< Pad floating */
|
|
|
+} gpio_pull_mode_t;
|
|
|
+
|
|
|
+typedef enum {
|
|
|
+ GPIO_DRIVE_CAP_0 = 0, /*!< Pad drive capability: weak */
|
|
|
+ GPIO_DRIVE_CAP_1 = 1, /*!< Pad drive capability: stronger */
|
|
|
+ GPIO_DRIVE_CAP_2 = 2, /*!< Pad drive capability: medium */
|
|
|
+ GPIO_DRIVE_CAP_DEFAULT = 2, /*!< Pad drive capability: medium */
|
|
|
+ GPIO_DRIVE_CAP_3 = 3, /*!< Pad drive capability: strongest */
|
|
|
+ GPIO_DRIVE_CAP_MAX,
|
|
|
+} gpio_drive_cap_t;
|
|
|
+
|
|
|
+typedef void (*gpio_isr_t)(void *);
|
|
|
+
|
|
|
+#ifdef __cplusplus
|
|
|
+}
|
|
|
+#endif
|