From f6c61544aeb05946b2dbf82c808c6f33d65bba35 Mon Sep 17 00:00:00 2001 From: chaijie Date: Wed, 30 Dec 2020 17:00:30 +0800 Subject: [PATCH] esp32s2/esp32s3: Improve 32k xtal startup time --- components/soc/esp32s2/include/soc/rtc.h | 4 ++-- components/soc/esp32s3/include/soc/rtc.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/soc/esp32s2/include/soc/rtc.h b/components/soc/esp32s2/include/soc/rtc.h index 115f0b4121..145de2ee97 100644 --- a/components/soc/esp32s2/include/soc/rtc.h +++ b/components/soc/esp32s2/include/soc/rtc.h @@ -244,9 +244,9 @@ typedef struct { } x32k_config_t; #define X32K_CONFIG_DEFAULT() { \ - .dac = 1, \ + .dac = 3, \ .dres = 3, \ - .dgm = 0, \ + .dgm = 3, \ .dbuf = 1, \ } diff --git a/components/soc/esp32s3/include/soc/rtc.h b/components/soc/esp32s3/include/soc/rtc.h index 85df37c975..04079a06a5 100644 --- a/components/soc/esp32s3/include/soc/rtc.h +++ b/components/soc/esp32s3/include/soc/rtc.h @@ -240,9 +240,9 @@ typedef struct { } x32k_config_t; #define X32K_CONFIG_DEFAULT() { \ - .dac = 1, \ + .dac = 3, \ .dres = 3, \ - .dgm = 0, \ + .dgm = 3, \ .dbuf = 1, \ }