Ver código fonte

Merge branch 'bugfix/fix_c2_rtc_ldo_too_low_bug' into 'master'

ESP32C2: Fix system not stable bug when rtc voltage too low

Closes IDF-5539

See merge request espressif/esp-idf!19217
Michael (XIAO Xufeng) 3 anos atrás
pai
commit
f11de46bfc
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      components/soc/esp32c2/include/soc/rtc.h

+ 1 - 1
components/soc/esp32c2/include/soc/rtc.h

@@ -179,7 +179,7 @@ typedef struct {
     .fast_clk_src = SOC_RTC_FAST_CLK_SRC_RC_FAST, \
     .slow_clk_src = SOC_RTC_SLOW_CLK_SRC_RC_SLOW, \
     .clk_rtc_clk_div = 0, \
-    .clk_8m_clk_div = 0, \
+    .clk_8m_clk_div = 1, \
     .slow_clk_dcap = RTC_CNTL_SCK_DCAP_DEFAULT, \
     .clk_8m_dfreq = RTC_CNTL_CK8M_DFREQ_DEFAULT, \
 }