You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I create a .bin file that I can pass to a third party user so that he can fully update the arduino esp32 without using any development environment - that is, no special programs and no hassle, the best way is to execute .bat?
The text was updated successfully, but these errors were encountered:
You can use esptool directly for this: esptool.exe --baud 921600 read_flash 0 0x400000 full.bin
and then program the device with: esptool.exe --baud 921600 write_flash 0 full.bin
Your issue is going to be handling the countless number of problems with Windows installations.
How can I create a .bin file that I can pass to a third party user so that he can fully update the arduino esp32 without using any development environment - that is, no special programs and no hassle, the best way is to execute .bat?
The text was updated successfully, but these errors were encountered: