mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
b9c22b126a
There are some register description errors in parts of rom/gpio.h This commit update the incorrect comments in rom/gpio.h And now esp_rom_gpio.h is recommend instead of rom/gpio.h. So this commit adds macro SIG_GPIO_OUT_IDX in esp_rom_gpio_connect_out_signal function and removes the reference to gpio.h in some source files. Closes https://github.com/espressif/esp-idf/issues/11737
20 lines
297 B
C
20 lines
297 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
|