Home
last modified time | relevance | path

Searched refs:flash_mode (Results 1 – 11 of 11) sorted by relevance

/hal_espressif-latest/tools/esptool_py/esptool/
Dcmds.py251 magic, _, flash_mode, flash_size_freq = struct.unpack("BBBB", image[:4])
255 if (args.flash_mode, args.flash_freq, args.flash_size) == ("keep",) * 3:
284 if args.flash_mode != "keep":
285 flash_mode = FLASH_MODES[args.flash_mode]
295 flash_params = struct.pack(b"BB", flash_mode, flash_size + flash_freq)
805 flash_mode = get_key_from_value(FLASH_MODES, image.flash_mode)
807 "Flash mode: {}".format(flash_mode.upper())
808 if flash_mode is not None
809 else "WARNING: Invalid flash mode ({})".format(image.flash_mode)
1084 image.flash_mode = FLASH_MODES[args.flash_mode]
Dbin_image.py212 self.flash_mode,
344 self.flash_mode,
458 self.flash_mode = 0
535 first_flash_mode = self.flash_mode
542 if first_flash_mode != self.flash_mode:
546 % (first_flash_mode, self.flash_mode)
588 self.flash_mode,
652 self.flash_mode = 0
/hal_espressif-latest/components/bootloader_support/bootloader_flash/include/
Dbootloader_flash_override.h120 …bute__((weak)) bootloader_flash_32bits_address_map_enable(esp_rom_spiflash_read_mode_t flash_mode);
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dflash-modes.rst18 To override these values, the options ``--flash_mode``, ``--flash_size`` and/or ``--flash_freq`` mu…
22 esptool.py --port /dev/ttyUSB1 write_flash --flash_mode dio --flash_size 4MB 0x0 bootloader.bin
26 Flash Mode (--flash_mode, -fm)
33 …odeMCU boards, are dual I/O and the firmware will only boot when flashed with ``--flash_mode dio``.
Dflashing-firmware.rst50 …_reset --after hard_reset --chip {IDF_TARGET_PATH_NAME} write_flash --flash_mode dio --flash_size…
65 …baud 921600 --before default_reset --after hard_reset write_flash -z --flash_mode dio --flash_freq…
75 …t_reset --after hard_reset --chip {IDF_TARGET_PATH_NAME} write_flash --flash_mode dio --flash_size…
Dbasic-commands.rst45 …esptool.py --port /dev/ttyUSB0 write_flash --flash_mode qio --flash_size 32m 0x0 bootloader.bin 0x…
194 … the `Flash Modes <#flash-modes>`__ arguments ``--flash_freq`` and ``--flash_mode``, which can be …
254 …esptool.py --chip {IDF_TARGET_NAME} merge_bin -o merged-flash.bin --flash_mode dio --flash_size 4M…
261 * The ``merge_bin`` command supports the same ``--flash_mode``, ``--flash_size`` and ``--flash_fre…
286 …esptool.py --chip {IDF_TARGET_NAME} merge_bin --format hex -o merged-flash.hex --flash_mode dio --…
325 …esptool.py --chip {IDF_TARGET_NAME} merge_bin --format uf2 -o merged-flash.uf2 --flash_mode dio --…
Dadvanced-commands.rst32 …set {IDF_TARGET_BOOTLOADER_OFFSET} for {IDF_TARGET_NAME}) then any ``--flash_mode``, ``--flash_siz…
/hal_espressif-latest/components/bootloader_support/bootloader_flash/src/
Dbootloader_flash.c421 void bootloader_flash_32bits_address_map_enable(esp_rom_spiflash_read_mode_t flash_mode) in bootloader_flash_32bits_address_map_enable() argument
424 switch (flash_mode) { in bootloader_flash_32bits_address_map_enable()
442 esp_rom_opiflash_cache_mode_config(flash_mode, &cache_rd); in bootloader_flash_32bits_address_map_enable()
/hal_espressif-latest/zephyr/port/bootloader/
Dbootloader_flash.c416 void bootloader_flash_32bits_address_map_enable(esp_rom_spiflash_read_mode_t flash_mode) in bootloader_flash_32bits_address_map_enable() argument
419 switch (flash_mode) { in bootloader_flash_32bits_address_map_enable()
437 esp_rom_opiflash_cache_mode_config(flash_mode, &cache_rd); in bootloader_flash_32bits_address_map_enable()
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dspi-flash-modes.rst6 …lash access modes: DIO, DOUT, QIO & QOUT. These can be set via the ``--flash_mode`` option of ``es…
29 In general, choose the fastest option for flash_mode that works with your device. Not all devices s…
108 Passing the ``--flash_mode`` argument to esptool will update this header when the file is being wr…
Dboot-mode-selection.rst342 …sh access mode. Read from the bootloader header, correspond to the ``--flash_mode`` and ``--flash_…