From 7a5b67b8def32a287fb263b1cd4fac9ff600cb26 Mon Sep 17 00:00:00 2001 From: Fu Zhi Bo Date: Thu, 20 Feb 2020 15:42:28 +0800 Subject: [PATCH] rtcio: fix rtcio unhold function Solve problems caused by code refactoring. Closes https://github.com/espressif/esp-idf/issues/4600 --- components/soc/src/esp32/include/hal/rtc_io_ll.h | 1 + 1 file changed, 1 insertion(+) diff --git a/components/soc/src/esp32/include/hal/rtc_io_ll.h b/components/soc/src/esp32/include/hal/rtc_io_ll.h index 450185327e..07ecad5647 100644 --- a/components/soc/src/esp32/include/hal/rtc_io_ll.h +++ b/components/soc/src/esp32/include/hal/rtc_io_ll.h @@ -237,6 +237,7 @@ static inline void rtcio_ll_force_hold_enable(int rtcio_num) static inline void rtcio_ll_force_hold_disable(int rtcio_num) { REG_CLR_BIT(RTC_CNTL_HOLD_FORCE_REG, rtc_io_desc[rtcio_num].hold_force); + REG_CLR_BIT(rtc_io_desc[rtcio_num].reg, rtc_io_desc[rtcio_num].hold); } /**