Add C61 support

This commit is contained in:
iranl
2025-11-23 22:03:15 +01:00
parent 27e9ac2085
commit 299918dfd4
18 changed files with 131 additions and 18 deletions

View File

@@ -85,6 +85,13 @@ e000 boot_app0.bin
10000 nuki_hub_esp32c6.bin
270000 nuki_hub_updater_esp32c6.bin
ESP32-C61
e000 boot_app0.bin
0 nuki_hub_bootloader_esp32c61.bin
8000 nuki_hub_partitions_esp32c61.bin
10000 nuki_hub_esp32c61.bin
270000 nuki_hub_updater_esp32c61.bin
ESP32-H2
e000 boot_app0.bin
0 nuki_hub_bootloader_esp32h2.bin
@@ -154,6 +161,10 @@ esptool.py --chip esp32c5 --port /dev/ttyUSB0 --baud 921600 --before default-res
esptool.py --chip esp32c6 --port /dev/ttyUSB0 --baud 921600 --before default-reset --after hard-reset write-flash -z --flash-mode dio --flash-freq keep --flash-size detect 0xe000 boot_app0.bin 0x0 nuki_hub_bootloader_esp32c6.bin 0x10000 nuki_hub_esp32c6.bin 0x270000 nuki_hub_updater_esp32c6.bin 0x8000 nuki_hub_partitions_esp32c6.bin
## ESP32-C61
esptool.py --chip esp32c61 --port /dev/ttyUSB0 --baud 921600 --before default-reset --after hard-reset write-flash -z --flash-mode dio --flash-freq keep --flash-size detect 0xe000 boot_app0.bin 0x0 nuki_hub_bootloader_esp32c61.bin 0x10000 nuki_hub_esp32c61.bin 0x270000 nuki_hub_updater_esp32c61.bin 0x8000 nuki_hub_partitions_esp32c61.bin
## ESP32-H2
esptool.py --chip esp32h2 --port /dev/ttyUSB0 --baud 921600 --before default-reset --after hard-reset write-flash -z --flash-mode dio --flash-freq keep --flash-size detect 0xe000 boot_app0.bin 0x0 nuki_hub_bootloader_esp32h2.bin 0x10000 nuki_hub_esp32h2.bin 0x270000 nuki_hub_updater_esp32h2.bin 0x8000 nuki_hub_partitions_esp32h2.bin