1 /*
2  * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 
8 #pragma once
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 #define GPIO_MATRIX_CONST_ONE_INPUT   (0x1E)
15 #define GPIO_MATRIX_CONST_ZERO_INPUT  (0x1F)
16 
17 #ifdef __cplusplus
18 }
19 #endif
20