Skip to content

Commit 93b9462

Browse files
committed
esp32c3: Increase the power off time when burning efuses
Work around some issues with response to efuse programming command (not issue with actual efuse programming, just the response).
1 parent 9305da8 commit 93b9462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

espressif/efuse/esp32c3/fields.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def set_efuse_timing(self):
172172
if apb_freq != 40:
173173
raise esptool.FatalError("The eFuse supports only xtal=40M (xtal was %d)" % apb_freq)
174174

175-
self.update_reg(self.REGS.EFUSE_WR_TIM_CONF2_REG, self.REGS.EFUSE_PWR_OFF_NUM_M, 0x60)
175+
self.update_reg(self.REGS.EFUSE_WR_TIM_CONF2_REG, self.REGS.EFUSE_PWR_OFF_NUM_M, 0x190)
176176

177177
def get_coding_scheme_warnings(self):
178178
""" Check if the coding scheme has detected any errors.

0 commit comments

Comments
 (0)