From 6411ed0325d5ee73753e28bc277a060a057c0ef1 Mon Sep 17 00:00:00 2001 From: Li Shuai Date: Tue, 29 Apr 2025 14:26:45 +0800 Subject: [PATCH] Revert "change(efuse): force return efuse controller state idle before efuse is supported" This reverts commit 36776a15ef0d8ca1ec68077f4e7cae6ca0464668. --- components/hal/esp32c5/include/hal/efuse_ll.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/hal/esp32c5/include/hal/efuse_ll.h b/components/hal/esp32c5/include/hal/efuse_ll.h index 081f6242b2..fcf80ba519 100644 --- a/components/hal/esp32c5/include/hal/efuse_ll.h +++ b/components/hal/esp32c5/include/hal/efuse_ll.h @@ -162,9 +162,7 @@ __attribute__((always_inline)) static inline void efuse_ll_rs_bypass_update(void __attribute__((always_inline)) static inline uint32_t efuse_ll_get_controller_state(void) { - // TODO: IDF-12854 - //return EFUSE.status.state; - return EFUSE_CONTROLLER_STATE_IDLE; + return EFUSE.status.state; } #ifdef __cplusplus