mirror of
https://github.com/espressif/esptool.git
synced 2025-10-17 07:32:30 +08:00
fix(espefuse): Fix efuse base addr for esp32c5 MP
This commit is contained in:
@@ -20,7 +20,7 @@ class EfuseDefineRegisters(EfuseRegistersBase):
|
||||
EFUSE_MEM_SIZE = 0x01FC + 4
|
||||
|
||||
# EFUSE registers & command/conf values
|
||||
DR_REG_EFUSE_BASE = 0x600B0800
|
||||
DR_REG_EFUSE_BASE = 0x600B4800
|
||||
EFUSE_PGM_DATA0_REG = DR_REG_EFUSE_BASE
|
||||
EFUSE_CHECK_VALUE0_REG = DR_REG_EFUSE_BASE + 0x020
|
||||
EFUSE_CLK_REG = DR_REG_EFUSE_BASE + 0x1C8
|
||||
|
@@ -13,6 +13,8 @@ class ESP32C5ROM(ESP32C6ROM):
|
||||
CHIP_NAME = "ESP32-C5"
|
||||
IMAGE_CHIP_ID = 23
|
||||
|
||||
EFUSE_BASE = 0x600B4800
|
||||
|
||||
IROM_MAP_START = 0x42000000
|
||||
IROM_MAP_END = 0x42800000
|
||||
DROM_MAP_START = 0x42800000
|
||||
|
Reference in New Issue
Block a user