From 64f8222ec6badc13bce0759bac1afd80efd91acb Mon Sep 17 00:00:00 2001 From: Lucas Saavedra Vaz Date: Wed, 18 Oct 2023 12:04:48 +0200 Subject: [PATCH] fix(driver/gpio): Fix SIG_GPIO_OUT_IDX comment for signal connect --- components/esp_rom/include/esp_rom_gpio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/esp_rom/include/esp_rom_gpio.h b/components/esp_rom/include/esp_rom_gpio.h index 84378be554..4788d7b2de 100644 --- a/components/esp_rom/include/esp_rom_gpio.h +++ b/components/esp_rom/include/esp_rom_gpio.h @@ -67,8 +67,8 @@ void esp_rom_gpio_connect_in_signal(uint32_t gpio_num, uint32_t signal_idx, bool * * @note There's no limitation on the number of signals that a GPIO can combine with. * - * @param gpio_num GPIO number, especially, `SIG_GPIO_OUT_IDX` means disconnect GPIO and other peripherals. Only the GPIO driver can control the output level. - * @param signal_idx Peripheral signal index (tagged as output attribute) + * @param gpio_num GPIO number + * @param signal_idx Peripheral signal index (tagged as output attribute). Particularly, `SIG_GPIO_OUT_IDX` means disconnect GPIO and other peripherals. Only the GPIO driver can control the output level. * @param out_inv Whether to signal to be inverted or not * @param oen_inv Whether the output enable control is inverted or not */