mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/esp_periph_uart_clk_gate_issue_v4.3' into 'release/v4.3'
esp_system: use ESP_CONSOLE_UART_NUM instead of CONSOLE_UART_NUM (backport to v4.3) See merge request espressif/esp-idf!21284
This commit is contained in:
commit
6b48dd30e6
@ -266,10 +266,10 @@ __attribute__((weak)) void esp_perip_clk_init(void)
|
|||||||
|
|
||||||
//Reset the communication peripherals like I2C, SPI, UART, I2S and bring them to known state.
|
//Reset the communication peripherals like I2C, SPI, UART, I2S and bring them to known state.
|
||||||
common_perip_clk |= SYSTEM_I2S0_CLK_EN |
|
common_perip_clk |= SYSTEM_I2S0_CLK_EN |
|
||||||
#if CONFIG_CONSOLE_UART_NUM != 0
|
#if CONFIG_ESP_CONSOLE_UART_NUM != 0
|
||||||
SYSTEM_UART_CLK_EN |
|
SYSTEM_UART_CLK_EN |
|
||||||
#endif
|
#endif
|
||||||
#if CONFIG_CONSOLE_UART_NUM != 1
|
#if CONFIG_ESP_CONSOLE_UART_NUM != 1
|
||||||
SYSTEM_UART1_CLK_EN |
|
SYSTEM_UART1_CLK_EN |
|
||||||
#endif
|
#endif
|
||||||
SYSTEM_SPI2_CLK_EN |
|
SYSTEM_SPI2_CLK_EN |
|
||||||
|
@ -269,13 +269,13 @@ __attribute__((weak)) void esp_perip_clk_init(void)
|
|||||||
|
|
||||||
//Reset the communication peripherals like I2C, SPI, UART, I2S and bring them to known state.
|
//Reset the communication peripherals like I2C, SPI, UART, I2S and bring them to known state.
|
||||||
common_perip_clk |= SYSTEM_I2S0_CLK_EN |
|
common_perip_clk |= SYSTEM_I2S0_CLK_EN |
|
||||||
#if CONFIG_CONSOLE_UART_NUM != 0
|
#if CONFIG_ESP_CONSOLE_UART_NUM != 0
|
||||||
SYSTEM_UART_CLK_EN |
|
SYSTEM_UART_CLK_EN |
|
||||||
#endif
|
#endif
|
||||||
#if CONFIG_CONSOLE_UART_NUM != 1
|
#if CONFIG_ESP_CONSOLE_UART_NUM != 1
|
||||||
SYSTEM_UART1_CLK_EN |
|
SYSTEM_UART1_CLK_EN |
|
||||||
#endif
|
#endif
|
||||||
#if CONFIG_CONSOLE_UART_NUM != 2
|
#if CONFIG_ESP_CONSOLE_UART_NUM != 2
|
||||||
SYSTEM_UART2_CLK_EN |
|
SYSTEM_UART2_CLK_EN |
|
||||||
#endif
|
#endif
|
||||||
SYSTEM_USB_CLK_EN |
|
SYSTEM_USB_CLK_EN |
|
||||||
|
Loading…
x
Reference in New Issue
Block a user