From d38b22b11bf03364eb32577329469c6c3cc6c37b Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 4 Apr 2018 15:04:29 +0800 Subject: [PATCH] =?UTF-8?q?soc/rtc,=20sleep:=20don=E2=80=99t=20lower=20the?= =?UTF-8?q?=20bias=20for=20wakeup=20state?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes watchdog resets occurring during wakeup from light sleep. --- components/soc/esp32/include/soc/rtc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/soc/esp32/include/soc/rtc.h b/components/soc/esp32/include/soc/rtc.h index 2f8cf3fe43..86beea5342 100644 --- a/components/soc/esp32/include/soc/rtc.h +++ b/components/soc/esp32/include/soc/rtc.h @@ -467,7 +467,7 @@ typedef struct { .wdt_flashboot_mod_en = 0, \ .dig_dbias_wak = RTC_CNTL_DBIAS_1V10, \ .dig_dbias_slp = RTC_CNTL_DBIAS_0V90, \ - .rtc_dbias_wak = RTC_CNTL_DBIAS_0V90, \ + .rtc_dbias_wak = RTC_CNTL_DBIAS_1V10, \ .rtc_dbias_slp = RTC_CNTL_DBIAS_0V90, \ .lslp_meminf_pd = 1, \ .vddsdio_pd_en = ((sleep_flags) & RTC_SLEEP_PD_VDDSDIO) ? 1 : 0, \