From a70522149297b4b254e3bfb43340346ef167114b Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Fri, 8 Dec 2017 13:14:36 +0800 Subject: [PATCH] esp32: fix incorrect clock enable bit name for UART0 Closes https://github.com/espressif/esp-idf/issues/1301 --- components/esp32/clk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/clk.c b/components/esp32/clk.c index 15b8af36c..4c6209762 100644 --- a/components/esp32/clk.c +++ b/components/esp32/clk.c @@ -187,7 +187,7 @@ void esp_perip_clk_init(void) common_perip_clk = DPORT_WDG_CLK_EN | DPORT_I2S0_CLK_EN | #if CONFIG_CONSOLE_UART_NUM != 0 - DPORT_UART0_CLK_EN | + DPORT_UART_CLK_EN | #endif #if CONFIG_CONSOLE_UART_NUM != 1 DPORT_UART1_CLK_EN |