From 5cd31c649a157d0635bf65e4b8551e955333bb72 Mon Sep 17 00:00:00 2001
From: Angus Gratton <gus@projectgus.com>
Date: Wed, 28 Oct 2015 20:13:41 +1100
Subject: [PATCH] GPIO2 UART iomux values: Remove _BLINK from macro name

This pin acts as a real TX not an activity LED as some pages suggest.
---
 core/include/esp/iomux_regs.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/include/esp/iomux_regs.h b/core/include/esp/iomux_regs.h
index ff6f614..7cb2cd0 100644
--- a/core/include/esp/iomux_regs.h
+++ b/core/include/esp/iomux_regs.h
@@ -80,8 +80,8 @@ _Static_assert(sizeof(struct IOMUX_REGS) == 0x44, "IOMUX_REGS is the wrong size"
 
 #define IOMUX_GPIO2_FUNC_GPIO              IOMUX_FUNC(0)
 #define IOMUX_GPIO2_FUNC_I2SO_WS           IOMUX_FUNC(1)
-#define IOMUX_GPIO2_FUNC_UART1_TXD_BLINK   IOMUX_FUNC(2)
-#define IOMUX_GPIO2_FUNC_UART0_TXD_BLINK   IOMUX_FUNC(4)
+#define IOMUX_GPIO2_FUNC_UART1_TXD         IOMUX_FUNC(2)
+#define IOMUX_GPIO2_FUNC_UART0_TXD         IOMUX_FUNC(4)
 
 #define IOMUX_GPIO3_FUNC_UART0_RXD         IOMUX_FUNC(0)
 #define IOMUX_GPIO3_FUNC_I2SO_DATA         IOMUX_FUNC(1)