We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138660b commit 6edafeaCopy full SHA for 6edafea
esptool/targets/esp32c61.py
@@ -45,6 +45,12 @@ class ESP32C61ROM(ESP32C6ROM):
45
EFUSE_SECURE_BOOT_EN_REG = EFUSE_BASE + 0x034
46
EFUSE_SECURE_BOOT_EN_MASK = 1 << 26
47
48
+ FLASH_FREQUENCY = {
49
+ "80m": 0xF,
50
+ "40m": 0x0,
51
+ "20m": 0x2,
52
+ }
53
+
54
MEMORY_MAP = [
55
[0x00000000, 0x00010000, "PADDING"],
56
[0x41800000, 0x42000000, "DROM"],
0 commit comments