A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.espressif.com/projects/esptool/en/latest/esp32/esptool/advanced-commands.html below:

Website Navigation


Advanced Commands - ESP32 - — esptool latest documentation

Advanced Commands

The write-flash, read-flash, erase-flash, erase-region, read-mac, flash-id, elf2image, image-info and merge-bin commands are all documented in the Basic Commands section.

The following less common commands are for more advanced users.

Verify Flash Data: verify-flash

The verify-flash command allows you to verify that data in flash matches a local file.

The write-flash command always verifies the MD5 hash of data which is written to flash, so additional verification is not usually needed. However, if you wish to perform a byte-by-byte verification of the flash contents (and optionally print the differences to the console) then you can do so with this command:

esptool verify-flash --diff 0x40000 my_app.elf-0x40000.bin

The --diff option specifies that if the files are different, the details should be printed to the console.

Note

Dump a Memory Region to File: dump-mem

The dump-mem command will dump a region from the chip’s memory space to a file. For example, to dump the ROM (64 kB) from an ESP8266:

esptool dump-mem 0x40000000 64k iram0.bin
Load a Binary to RAM: load-ram

The load-ram command allows the loading of an executable binary image (created with the elf2image or make-image commands) directly into RAM, and then immediately executes the program contained within it. Command also supports .hex file created by merge-bin command from supported .bin files.

esptool --no-stub load-ram ./test/images/helloworld-esp8266.bin

Note

Read or Write RAM: read-mem & write-mem

The read-mem & write-mem commands allow reading and writing single words (4 bytes) of RAM. This can be used to “peek” and “poke” at registers.

esptool write-mem 0x400C0000 0xabad1dea
esptool read-mem 0x400C0000
Read Flash Chip Registers: read-flash-status

This command is intended for use when debugging hardware flash chip-related problems. It allows sending a RDSR, RDSR2 and/or RDSR3 commands to the flash chip to read the status register contents. This can be used to check write protection status, for example:

esptool read-flash-status --bytes 2

The --bytes argument determines how many status register bytes are read.

Note

Not all flash chips support all of these commands. Consult the specific flash chip datasheet for details.

Write Flash Chip Registers: write-flash-status

This command is intended for use when debugging hardware flash chip-related problems. It allows sending WRSR, WRSR2 and/or WRSR3 commands to the flash chip to write the status register contents. This can be used to clear write protection bits, for example:

esptool write-flash-status --bytes 2 --non-volatile 0

The --bytes option is similar to the corresponding option for read-flash-status and causes a mix of WRSR (01h), WRSR2 (31h), and WRSR3 (11h) commands to be sent to the chip. If --bytes 2 is used then WRSR is sent first with a 16-bit argument and then with an 8-bit argument, as different flash chips use this command differently. Otherwise, each command is accompanied by 8-bits of the new status register value.

A second option --non-volatile can be used in order to send a WREN (06h) command before writing the status. This may allow non-volatile status register bits to be set or cleared. If the --non-volatile option is not supplied, a WEVSR (50h) command is sent instead of WREN.

Note

Consult the specific flash chip datasheet for details about which commands are recognised by a particular chip.

Warning

Setting status bits (particularly non-volatile ones) can have permanent side effects for some flash chips, so check carefully before using this command to set any bits!

Read Serial Flash Discoverable Parameters (SFDP): read-flash-sfdp

The Serial Flash Discoverable Parameters (SFDP) store essential vendor-specific configuration data of the flash memory chip. These parameters help identify and interact with different flash devices. Usage:

esptool read-flash-sfdp 16 4

This will read 4 bytes from SFDP address 16.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4