Skip to content

Commit 40e1abf

Browse files
committed
Merge branch 'bugfix/idf-12854' into 'master'
Revert the change of force return efuse controller state idle Closes IDF-12854 See merge request espressif/esp-idf!38825
2 parents 8e0b1cf + 6411ed0 commit 40e1abf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,7 @@ __attribute__((always_inline)) static inline void efuse_ll_rs_bypass_update(void
162162

163163
__attribute__((always_inline)) static inline uint32_t efuse_ll_get_controller_state(void)
164164
{
165-
// TODO: IDF-12854
166-
//return EFUSE.status.state;
167-
return EFUSE_CONTROLLER_STATE_IDLE;
165+
return EFUSE.status.state;
168166
}
169167

170168
#ifdef __cplusplus

0 commit comments

Comments
 (0)