Home
last modified time | relevance | path

Searched refs:read_flash (Results 1 – 8 of 8) sorted by relevance

/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dscripting.rst12 command = ['--baud', '460800', 'read_flash', '0', '0x200000', 'flash_contents.bin']
Dbasic-commands.rst99 Read Flash Contents: read_flash
102 The read_flash command allows reading back the contents of flash. The arguments to the command are …
106 esptool.py -p PORT -b 460800 read_flash 0 0x200000 flash_contents.bin
113 esptool.py -p PORT -b 460800 read_flash 0 ALL flash_contents.bin
118 …When using the ``read_flash`` command in combination with the ``--no-stub`` argument, it may be ne…
Dadvanced-commands.rst8 The ``write_flash``, ``read_flash``, ``erase_flash``, ``erase_region``, ``read_mac``, ``flash_id``,…
33 …* Another way to compare flash contents is to use the ``read_flash`` command, and then use binary …
Dbasic-options.rst44 …PTOOL_BAUD`` environment variable. This can speed up ``write_flash`` and ``read_flash`` operations.
/hal_espressif-latest/tools/esptool_py/
DCHANGELOG.md88 - **read_flash**: add flash size arg to enable reading past 2MB without stub
89 - **read_flash**: flush transmit buffer less often to inrease throughput
/hal_espressif-latest/tools/esptool_py/esptool/
Dcmds.py1209 def read_flash(esp, args): function
1223 data = esp.read_flash(args.address, args.size, flash_progress)
1262 flash = esp.read_flash(address, image_size)
D__init__.py58 read_flash,
Dloader.py1214 def read_flash(self, offset, length, progress_fn=None): member in ESPLoader