-
No matter what I do, I can't get the Flash Tool to work on MacOS Sequoia. I can run the python serial files just fine though and connect to the console: python bin/upload.py --chip esp32 --baud 460800 --port /dev/cu.usbserial-1120 erase_flash No idea why the flash tool doesn't work but if I could get the steps that it performs, I can just run those directly without using the tool at all. |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 2 replies
-
Nevermind. I found it. Here they are in the event someone else needs this: python bin/upload.py --chip esp32 --baud 115200 --port /dev/cu.usbserial-1120 --before default_reset --after hard_reset write_flash -z 0x1000 firmware/esp32/esp32_devkitc-bootloader.bin 0x8000 firmware/esp32/esp32_devkitc-partitions.bin 0xe000 firmware/esp32/boot_app0.bin 0x10000 firmware/esp32/esp32_devkitc-app.bin 0x3B0000 firmware/filesystem.bin Obviously change the port, firmware, etc to those specific to your build. |
Beta Was this translation helpful? Give feedback.
-
Or use the espswebflashtool |
Beta Was this translation helpful? Give feedback.
-
The absolute latest build will be up as "experimental". It has all of the latest changes and is in the testing phase. |
Beta Was this translation helpful? Give feedback.
Nevermind. I found it. Here they are in the event someone else needs this:
python bin/upload.py --chip esp32 --baud 115200 --port /dev/cu.usbserial-1120 --before default_reset --after hard_reset write_flash -z 0x1000 firmware/esp32/esp32_devkitc-bootloader.bin 0x8000 firmware/esp32/esp32_devkitc-partitions.bin 0xe000 firmware/esp32/boot_app0.bin 0x10000 firmware/esp32/esp32_devkitc-app.bin 0x3B0000 firmware/filesystem.bin
Obviously change the port, firmware, etc to those specific to your build.