Skip to content

Commit 36776a1

Browse files
esp-lisQingzhaoYin
authored andcommitted
change(efuse): force return efuse controller state idle before efuse is supported
1 parent 7597670 commit 36776a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/hal/esp32c5/include/hal/efuse_ll.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ __attribute__((always_inline)) static inline void efuse_ll_rs_bypass_update(void
150150

151151
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_controller_state(void)
152152
{
153-
return EFUSE.status.state;
153+
// TODO: IDF-12854
154+
//return EFUSE.status.state;
155+
return EFUSE_CONTROLLER_STATE_IDLE;
154156
}
155157

156158
#ifdef __cplusplus

0 commit comments

Comments
 (0)