Skip to content

Commit

Permalink
esp32c3: Increase the power off time when burning efuses
Browse files Browse the repository at this point in the history
Work around some issues with response to efuse programming command (not issue
with actual efuse programming, just the response).
  • Loading branch information
projectgus committed May 20, 2021
1 parent 9305da8 commit 93b9462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion espressif/efuse/esp32c3/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def set_efuse_timing(self):
if apb_freq != 40:
raise esptool.FatalError("The eFuse supports only xtal=40M (xtal was %d)" % apb_freq)

self.update_reg(self.REGS.EFUSE_WR_TIM_CONF2_REG, self.REGS.EFUSE_PWR_OFF_NUM_M, 0x60)
self.update_reg(self.REGS.EFUSE_WR_TIM_CONF2_REG, self.REGS.EFUSE_PWR_OFF_NUM_M, 0x190)

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

0 comments on commit 93b9462

Please sign in to comment.