Skip to content

Commit

Permalink
fix(esptool): Fix esp32c61 flash frequency config
Browse files Browse the repository at this point in the history
  • Loading branch information
mythbuster5 committed Sep 18, 2024
1 parent 138660b commit 6edafea
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions esptool/targets/esp32c61.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ class ESP32C61ROM(ESP32C6ROM):
EFUSE_SECURE_BOOT_EN_REG = EFUSE_BASE + 0x034
EFUSE_SECURE_BOOT_EN_MASK = 1 << 26

FLASH_FREQUENCY = {
"80m": 0xF,
"40m": 0x0,
"20m": 0x2,
}

MEMORY_MAP = [
[0x00000000, 0x00010000, "PADDING"],
[0x41800000, 0x42000000, "DROM"],
Expand Down

0 comments on commit 6edafea

Please sign in to comment.