From 10340d718fe58e518378f64b22b9a0b3ae032612 Mon Sep 17 00:00:00 2001 From: Wangjialin Date: Mon, 17 Jul 2017 15:41:02 +0800 Subject: [PATCH] bugfix(typo): fix typo in rom/gpio.h --- components/esp32/include/rom/gpio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/include/rom/gpio.h b/components/esp32/include/rom/gpio.h index b740a020b6..bd1777c60b 100644 --- a/components/esp32/include/rom/gpio.h +++ b/components/esp32/include/rom/gpio.h @@ -49,7 +49,7 @@ typedef enum { GPIO_PIN_INTR_DISABLE = 0, GPIO_PIN_INTR_POSEDGE = 1, GPIO_PIN_INTR_NEGEDGE = 2, - GPIO_PIN_INTR_ANYEGDE = 3, + GPIO_PIN_INTR_ANYEDGE = 3, GPIO_PIN_INTR_LOLEVEL = 4, GPIO_PIN_INTR_HILEVEL = 5 } GPIO_INT_TYPE;