| /hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
| D | flash-modes.rst | 16 A header at the beginning of a bootable image contains these values. 18 To override these values, the options ``--flash_mode``, ``--flash_size`` and/or ``--flash_freq`` mu… 29 These set Quad Flash I/O or Dual Flash I/O modes. Valid values are ``keep``, ``qio``, ``qout``, ``d… 46 Clock frequency for SPI flash interactions. Valid values are ``keep``, {IDF_TARGET_FLASH_FREQ} (MHz… 48 …ks with {IDF_TARGET_FLASH_FREQ_0}MHz clock speeds, but you can try lower values if the device won'… 57 …Valid values are: ``keep``, ``detect``, ``256KB``, ``512KB``, ``1MB``, ``2MB``, ``4MB``, ``2MB-c1`… 61 Valid values are: ``keep``, ``detect``, ``1MB``, ``2MB``, ``4MB``, ``8MB``, ``16MB`` 65 …Valid values are: ``keep``, ``detect``, ``1MB``, ``2MB``, ``4MB``, ``8MB``, ``16MB``, ``32MB``, ``…
|
| D | advanced-options.rst | 45 There are 3 possible values for this option: 83 …his is if the ``--no-stub`` option is also provided. In this case, efuse values are ignored and ``… 118 …ation equivalent to a particular set of SPI pin efuses being burned. The values supplied are GPIO … 140 …shell-7.3>`__ in PowerShell (method of passing a collection of parameter values to a command as a …
|
| D | basic-commands.rst | 34 Numeric values passed to write_flash (and other commands) can be specified either in hex (ie 0x1000… 194 …-flash_freq`` and ``--flash_mode``, which can be used to set the default values in the image heade… 195 …values can also be overwritten via the ``write_flash`` command, see the `write_flash command <#wri… 262 …o pass the ``--chip`` parameter if using these options, as the supported values and the bootloader…
|
| /hal_espressif-latest/tools/esptool_py/esptool/ |
| D | __init__.py | 1219 values = value.upper() 1221 values = value.split(",") 1222 if len(values) != 5: 1229 values = tuple(int(v, 0) for v in values) 1242 setattr(namespace, self.dest, values) 1267 def __call__(self, parser, namespace, values, option_string=None): argument 1270 for i in range(0, len(values), 2): 1272 address = int(values[i], 0) 1275 self, 'Address "%s" must be a number' % values[i] 1278 argfile = open(values[i + 1], "rb")
|
| /hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
| D | burn-efuse-cmd.rst | 6 …Fuses. The arguments to ``burn_efuse`` are eFuse names (as shown in summary output) and new values. 17 It can be list of eFuse names and values (like EFUSE_NAME1 1 EFUSE_NAME2 7 EFUSE_NAME3 10 etc.). 19 New values can be a numeric value in decimal or hex (with "0x" prefix). eFuse bits can only be burn… 91 …d in the factory to the GPIO numbers where the flash is connected. These values override the defau… 93 …ected. If at least one of these eFuses is burned, all of of them must be set to the correct values.
|
| D | dump-cmd.rst | 8 - display raw values of eFuse registers, grouped by block. Output corresponds directly to eFuse reg…
|
| D | summary-cmd.rst | 31 … use the correct value. In espefuse v2.6 and newer, read-protected eFuse values are displayed as q… 118 Saving efuse values to efuses.json
|
| D | read-write-protections-cmd.rst | 28 … use the correct value. In espefuse v2.6 and newer, read-protected eFuse values are displayed as q…
|
| /hal_espressif-latest/tools/esptool_py/espefuse/efuse/ |
| D | base_operations.py | 32 def __call__(self, parser, namespace, values, option_string=None): argument 43 if len(values) > 1: 44 if len(values) % 2: 47 values 50 for i in range(0, len(values), 2): 51 efuse_name, new_value = values[i : i + 2 :] 58 efuse_name = values[0] 453 new_value_list = [value for value in args.name_value_pairs.values()]
|
| /hal_espressif-latest/zephyr/scripts/blobs/ |
| D | README.md | 7 1. Update `submodules.txt` file by changing revision values, folder path and URLs.
|
| /hal_espressif-latest/tools/esptool_py/esptool/targets/ |
| D | __init__.py | 39 ROM_LIST = list(CHIP_DEFS.values())
|
| /hal_espressif-latest/components/esp_adc/ |
| D | Kconfig | 25 Some ESP32s have Two Point calibration values burned into eFuse BLOCK3. 27 ADC-Voltage curve using Two Point values if they are available.
|
| /hal_espressif-latest/components/esp_system/ld/esp32c2/ |
| D | memory.ld.in | 6 * Restrict to simple macros with numeric values, and/or #if/#endif blocks. 28 …* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/components/esp_system/ld/esp32c6/ |
| D | memory.ld.in | 12 * Restrict to simple macros with numeric values, and/or #if/#endif blocks. 45 …* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/components/esp_system/ld/esp32h2/ |
| D | memory.ld.in | 12 * Restrict to simple macros with numeric values, and/or #if/#endif blocks. 45 …* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/components/esp_system/ld/esp32c3/ |
| D | memory.ld.in | 12 * Restrict to simple macros with numeric values, and/or #if/#endif blocks. 38 …* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/components/esp_system/ld/esp32s2/ |
| D | memory.ld.in | 13 Restrict to simple macros with numeric values, and/or #if/#endif blocks. 53 …/* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/components/esp_system/ld/esp32s3/ |
| D | memory.ld.in | 11 * Restrict to simple macros with numeric values, and/or #if/#endif blocks. 56 …* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/ |
| D | boot-mode-selection.rst | 252 The individual bit values are as follows: 329 …This is normal boot output based on a combination of eFuse values and information read from the bo… 340 …All custom pin values but WP are encoded in the configsip byte loaded from eFuse, and WP is suppli… 341 …v:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00`` Custom GPIO drive strength values for SPI flash pins… 361 …You can compare these values to the software bootloader image by running ``esptool.py --chip {IDF_… 363 …If there is a problem with the SPI flash chip addressing mode, the values printed by the bootloade…
|
| D | serial-protocol.rst | 121 The ROM loader sends the following error values 413 …| (other values) | Pin numbers as 6-bit values, packed into a 30-bit value. Order (from MSB): H… 418 …When writing the values of each pin as 6-bit numbers packed into the data word, each 6-bit value u… 423 * Pin numbers 32 & 33 are represented as values 30 & 31. 437 …values which are passed except total size are hardcoded, and most are not used when writing to fla…
|
| /hal_espressif-latest/components/esp_system/ |
| D | system_init_fn.txt | 8 # Entries are ordered by the order of execution (i.e. from low priority values to high ones).
|
| /hal_espressif-latest/components/esp_system/ld/esp32/ |
| D | memory.ld.in | 20 to simple macros with numeric values, and/or #if/#endif blocks. 50 …/* All these values assume the flash cache is on, and have the blocks this uses subtracted from th…
|
| /hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/avrc/ |
| D | btc_avrc.c | 1070 tAVRC_APP_SETTING values = {0}; in btc_avrc_ct_send_set_player_value_cmd() local 1072 values.attr_id = attr_id; in btc_avrc_ct_send_set_player_value_cmd() 1073 values.attr_val = value_id; in btc_avrc_ct_send_set_player_value_cmd() 1078 avrc_cmd.set_app_val.p_vals = &values; in btc_avrc_ct_send_set_player_value_cmd()
|
| /hal_espressif-latest/zephyr/scripts/pinctrl/ |
| D | README.md | 43 - The values for the fields `sigi` and `sigo` must be borrowed from `include/zephyr/dt-bindings/pin…
|
| /hal_espressif-latest/components/bootloader/ |
| D | project_include.cmake | 57 # for use by the bootloader subproject. Replace the values in config with these absolute paths,
|