From c8d8fb58e7cf5240bbaa29503ce6a574c61c181e Mon Sep 17 00:00:00 2001 From: Simon Werner Date: Wed, 7 Jun 2017 16:56:05 +1200 Subject: [PATCH] Fixed incorrect value in comments for GPIO_NUM_33. Merges https://github.com/espressif/esp-idf/pull/676 --- components/driver/include/driver/gpio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/include/driver/gpio.h b/components/driver/include/driver/gpio.h index c68caee79c..1b184f6047 100644 --- a/components/driver/include/driver/gpio.h +++ b/components/driver/include/driver/gpio.h @@ -162,7 +162,7 @@ typedef enum { GPIO_NUM_27 = 27, /*!< GPIO27, input and output */ GPIO_NUM_32 = 32, /*!< GPIO32, input and output */ - GPIO_NUM_33 = 33, /*!< GPIO32, input and output */ + GPIO_NUM_33 = 33, /*!< GPIO33, input and output */ GPIO_NUM_34 = 34, /*!< GPIO34, input mode only */ GPIO_NUM_35 = 35, /*!< GPIO35, input mode only */ GPIO_NUM_36 = 36, /*!< GPIO36, input mode only */