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