From 36776a15ef0d8ca1ec68077f4e7cae6ca0464668 Mon Sep 17 00:00:00 2001 From: Li Shuai Date: Wed, 16 Apr 2025 11:30:23 +0800 Subject: [PATCH] change(efuse): force return efuse controller state idle before efuse is supported --- components/hal/esp32c5/include/hal/efuse_ll.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/hal/esp32c5/include/hal/efuse_ll.h b/components/hal/esp32c5/include/hal/efuse_ll.h index 00d5dce614..359a0a6562 100644 --- a/components/hal/esp32c5/include/hal/efuse_ll.h +++ b/components/hal/esp32c5/include/hal/efuse_ll.h @@ -150,7 +150,9 @@ __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) { - return EFUSE.status.state; + // TODO: IDF-12854 + //return EFUSE.status.state; + return EFUSE_CONTROLLER_STATE_IDLE; } #ifdef __cplusplus