Chat freely about anything...

User avatar
By amadeus84
#33973 I want to save to disk the firmware that comes with a brand new ESP8266-12 before I put nodeMCU on the chip, because I like the original version. So, per the author's instructions (https://github.com/themadinventor/esptool):

./esptool.py dump_mem 0x40000000 65536 iram0.bin

That works, but how exactly do I back up the whole thing? That is, which address and what size?
How do I know if there's more than one file?

Thanks!
User avatar
By martinayotte
#33991 "dump_mem" and "read_flash" are not the same thing.
"dump_mem" example your mentioned is reading memory, whatever it is, RAM or anything else.
"read_flash" is really the option to do backup of the flash, as Mario said.