From 7d5456615cd7db24be37c217479a105340f4cfd1 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 23 Sep 2024 11:03:11 +0800 Subject: [PATCH] feat(lp_wdt): update low power wdt for C61 --- components/hal/esp32c61/include/hal/lpwdt_ll.h | 2 -- components/hal/esp32c61/include/hal/rwdt_ll.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/components/hal/esp32c61/include/hal/lpwdt_ll.h b/components/hal/esp32c61/include/hal/lpwdt_ll.h index 981a009d28..b00fe7d535 100644 --- a/components/hal/esp32c61/include/hal/lpwdt_ll.h +++ b/components/hal/esp32c61/include/hal/lpwdt_ll.h @@ -24,8 +24,6 @@ extern "C" { #include "esp32c61/rom/ets_sys.h" -// TODO: [ESP32C61] IDF-9243, inherit from c6 - /* The value that needs to be written to LP_WDT_WPROTECT_REG to write-enable the wdt registers */ #define LP_WDT_WKEY_VALUE 0x50D83AA1 /* The value that needs to be written to LP_WDT_SWD_WPROTECT_REG to write-enable the swd registers */ diff --git a/components/hal/esp32c61/include/hal/rwdt_ll.h b/components/hal/esp32c61/include/hal/rwdt_ll.h index 5af0fc9552..4498c32aed 100644 --- a/components/hal/esp32c61/include/hal/rwdt_ll.h +++ b/components/hal/esp32c61/include/hal/rwdt_ll.h @@ -12,8 +12,6 @@ extern "C" { #endif -// TODO: [ESP32C61] IDF-9243, inherit from c6 - #include "hal/lpwdt_ll.h" typedef lp_wdt_dev_t rwdt_dev_t;