Files
esp-idf/components/soc/include/soc/gpio_periph.h
morris 580d9bca57 Merge branch 'refactor/esp_hal_gpio' into 'master'
refactor(gpio): split GPIO HAL into separate component

Closes IDF-14089

See merge request espressif/esp-idf!43215
2025-12-01 10:40:07 +08:00

22 lines
378 B
C

/*
* SPDX-FileCopyrightText: 2018-2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*/
#pragma once
#include <stdint.h>
#include "soc/soc_caps.h"
#ifdef __cplusplus
extern "C" {
#endif
extern const uint32_t GPIO_PIN_MUX_REG[SOC_GPIO_PIN_COUNT];
extern const uint32_t GPIO_HOLD_MASK[SOC_GPIO_PIN_COUNT];
#ifdef __cplusplus
}
#endif