mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-26 22:00:39 +03:00
refactor(gpio): split GPIO HAL into separate component Closes IDF-14089 See merge request espressif/esp-idf!43215
22 lines
378 B
C
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
|