mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-07 20:00:53 +00:00
19 lines
296 B
C
19 lines
296 B
C
/*
|
|
* SPDX-FileCopyrightText: 2020-2023 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define GPIO_MATRIX_CONST_ONE_INPUT (0x1E)
|
|
#define GPIO_MATRIX_CONST_ZERO_INPUT (0x1F)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|