Searched refs:read_flash (Results 1 – 8 of 8) sorted by relevance
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | scripting.rst | 12 command = ['--baud', '460800', 'read_flash', '0', '0x200000', 'flash_contents.bin']
|
D | basic-commands.rst | 99 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…
|
D | advanced-commands.rst | 8 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 …
|
D | basic-options.rst | 44 …PTOOL_BAUD`` environment variable. This can speed up ``write_flash`` and ``read_flash`` operations.
|
/hal_espressif-latest/tools/esptool_py/ |
D | CHANGELOG.md | 88 - **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/ |
D | cmds.py | 1209 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__.py | 58 read_flash,
|
D | loader.py | 1214 def read_flash(self, offset, length, progress_fn=None): member in ESPLoader
|