/hal_espressif-latest/components/mbedtls/port/ |
D | mbedtls_debug.c | 19 const char *file, int line, 54 const char *file, int line, in mbedtls_esp_debug() argument 64 file_sep = rindex(file, '/'); in mbedtls_esp_debug() 66 file = file_sep+1; in mbedtls_esp_debug() 70 ESP_LOGW(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug() 73 ESP_LOGI(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug() 76 ESP_LOGD(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug() 79 ESP_LOGV(TAG, "%s:%d %s", file, line, str); in mbedtls_esp_debug()
|
/hal_espressif-latest/components/esp_system/ |
D | esp_err.c | 27 static void esp_error_check_failed_print(const char *msg, esp_err_t rc, const char *file, int line,… in esp_error_check_failed_print() argument 38 …esp_rom_printf("file: \"%s\" line %d\nfunc: %s\nexpression: %s\n", file, line, function, expressio… in esp_error_check_failed_print() 42 void _esp_error_check_failed_without_abort(esp_err_t rc, const char *file, int line, const char *fu… in _esp_error_check_failed_without_abort() argument 44 …esp_error_check_failed_print("ESP_ERROR_CHECK_WITHOUT_ABORT", rc, file, line, function, expression… in _esp_error_check_failed_without_abort() 47 void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const … in _esp_error_check_failed() argument 49 …esp_error_check_failed_print("ESP_ERROR_CHECK", rc, file, line, function, expression, (intptr_t)__… in _esp_error_check_failed()
|
D | check_system_init_priorities.py | 61 f'but regular expression matched {len(found)} time(s)'), file=sys.stderr) 95 … f'please update {STARTUP_ENTRIES_FILE} to match the actual startup order:'), file=sys.stderr) 97 print(f'{line}', file=sys.stderr)
|
/hal_espressif-latest/tools/esptool_py/test/ |
D | test_image_info.py | 28 def run_image_info(self, chip, file, version=None): argument 46 cmd += [file] if os.path.isfile(file) else ["".join([IMAGES_DIR, os.sep, file])] 201 def convert_bin2hex(file): argument 215 file, 219 fd, file = tempfile.mkstemp(suffix=".hex") 221 convert_bin2hex(file) 222 out = self.run_image_info("esp32", file, "2") 234 os.unlink(file)
|
/hal_espressif-latest/components/newlib/ |
D | assert.c | 33 void __attribute__((noreturn)) __assert_func(const char *file, int line, const char *func, const ch… in __assert_func() argument 54 if (esp_ptr_in_drom(file)) { in __assert_func() 55 file = CACHE_DISABLED_STR; in __assert_func() 68 const char *str[] = {ASSERT_STR, func ? func : "\b", " ", file, ":", lbuf, " (", expr, ")"}; in __assert_func() 85 void __attribute__((noreturn)) __assert(const char *file, int line, const char *failedexpr) in __assert() argument 87 __assert_func(file, line, NULL, failedexpr); in __assert()
|
/hal_espressif-latest/tools/esptool_py/ci/ |
D | download_flasher_stubs.py | 74 file = ".".join((file_name, "json")) 75 url = "/".join((stub_set["DOWNLOAD_URL"], stub_set["VERSION"], file)) 76 dest = os.path.join(dest_sub_dir, file)
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | configuration-file.rst | 13 These options can be specified in a configuration file. This makes it easy to run 20 The default name for a configuration file is ``esptool.cfg``. First, the same 23 If a configuration file is not found here, the current user's OS configuration directory is inspect… 29 If a configuration file is still not found, the last inspected location is the home directory: 38 A different location for the configuration file can be specified with the ``ESPTOOL_CFGFILE`` 43 configuration file is used. It will automatically read from ``setup.cfg`` or 48 #. a file specified with the ``ESPTOOL_CFGFILE`` environment variable 56 An ``esptool.py`` configuration file is in .ini file format: it must be 64 Sample configuration file: 68 # esptool.cfg file to configure internal settings of esptool
|
D | basic-commands.rst | 15 Multiple flash addresses and file names can be given on the same command line: 27 …) and file name. When generating ESP8266 "version 1" images, the file names created by ``elf2image… 32 …The next arguments to ``write_flash`` are one or more pairs of offset (address) and file name. Con… 47 …as the default is to keep the flash mode and size from the ``.bin`` image file. See the :ref:`flas… 186 The ``elf2image`` command converts an ELF file (from compiler/linker output) into the binary execut… 197 By default, ``elf2image`` uses the sections in the ELF file to generate each segment in the binary … 201 …-0x00000.bin`` and ``my_app.elf-0x40000.bin``. You can alter the firmware file name prefix using t… 203 …``elf2image`` can also produce a "version 2" image file suitable for use with a software bootloade… 211 …lf2image produces a single output binary "image file". By default this has the same name as the .e… 217 In the above example, the output image file would be called ``my_esp_app.bin``. [all …]
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | bootloader_panic.c | 13 void __assert_func(const char *file, int line, const char *func, const char *expr) in __assert_func() argument 17 esp_rom_printf("Assert failed in %s, %s:%d (%s)\r\n", func, file, line, expr); in __assert_func()
|
/hal_espressif-latest/components/esp_common/src/ |
D | esp_err_check_linux.c | 15 void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const … in _esp_error_check_failed() argument 22 printf("file: \"%s\" line %d\nfunc: %s\nexpression: %s\n", file, line, function, expression); in _esp_error_check_failed()
|
/hal_espressif-latest/components/bootloader/subproject/components/micro-ecc/ |
D | CMakeLists.txt | 1 # only compile the "uECC_verify_antifault.c" file which includes the "micro-ecc/uECC.c" source file
|
/hal_espressif-latest/zephyr/scripts/blobs/ |
D | README.md | 3 This document explains how to generate `module.yml` file to add specific revision of wifi and BT RF… 7 1. Update `submodules.txt` file by changing revision values, folder path and URLs.
|
/hal_espressif-latest/components/esp_phy/ |
D | CMakeLists.txt | 32 …file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/${idf_target}/phy_multiple_init_data.bin DESTINATION "${buil… 41 # [refactor-todo]: requires "driver" component for periph_ctrl header file 99 # To get the phy_init_data.bin file, compile phy_init_data.h as a C file and then objcopy 100 # the object file to a raw binary
|
/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/ |
D | index.rst | 57 …file`` - For host tests. Use it together with ``--virt`` option. The tool will work in the virtual… 59 - ``--extend-efuse-table`` - CSV file from `ESP-IDF <https://docs.espressif.com/projects/esp-idf/>`… 64 …aved between commands. Using ``--path-efuse-file``, you can save the written data to a file. Delet… 120 …s/esp-idf/en/stable/esp32/api-reference/system/efuse.html#description-csv-file>`_ from the `ESP-ID… 126 Below is an example of an ``esp_efuse_custom_table.csv`` file. This example demonstrates how to def… 143 When you include this CSV file, the tool will generate a new section in the summary called ``User f… 161 You can reference these fields using the names and aliases provided in the CSV file. For non-sequen… 167 …SV file, refer to the `eFuse Manager <https://docs.espressif.com/projects/esp-idf/en/stable/esp32/…
|
D | dump-cmd.rst | 15 - ``joint`` - All eFuse blocks are stored in one file; 16 …- ``split`` - Each eFuse block is placed in its own file. The tool will create multiple files base… 17 - ``--file_name`` - The path to the file in which to save the dump, if not specified, output to the… 92 This command saves dump for each block into a separate file. You need to provide the common path na… 119 To save all eFuse blocks in one file, use the following command:
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/ |
D | util.py | 33 with open(path_to_file, "r") as file: 34 for line in file.readlines():
|
/hal_espressif-latest/components/esp_common/include/ |
D | esp_err.h | 81 void _esp_error_check_failed(esp_err_t rc, const char *file, int line, const char *function, const … 83 void _esp_error_check_failed_without_abort(esp_err_t rc, const char *file, int line, const char *fu…
|
/hal_espressif-latest/tools/esptool_py/docs/en/espsecure/ |
D | index.rst | 47 HSM config file 50 An HSM config file is required with the fields (``pkcs11_lib``, ``credentials``, ``slot``, ``label`… 54 Alternatively, you could also add a ``credentials`` field in the HSM config file to store the (plai… 56 Below is a sample HSM config file (``hsm_config.ini``) for using `SoftHSMv2 <https://github.com/ope… 60 # Config file for the external Hardware Security Module
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32/ |
D | operations.py | 353 for file in scripts: 354 with open(file.name, "r") as file: 355 exec(compile(file.read(), file.name, "exec"))
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c2/ |
D | operations.py | 339 for file in scripts: 340 with open(file.name, "r") as file: 341 exec(compile(file.read(), file.name, "exec"))
|
/hal_espressif-latest/zephyr/scripts/pinctrl/ |
D | README.md | 9 …file under `zephyr/port/pincfgs` named with the lowercased SoC name (e.g., `esp32.yml` for `ESP32`… 32 …the required fields in a `{soc}.yaml` file with the above snippet. The bullet indentation follows … 43 …be borrowed from `include/zephyr/dt-bindings/pinctrl/{soc}-gpio-sigmap.h` file. Drop the `ESP_` pr…
|
/hal_espressif-latest/components/esp_netif/ |
D | README.md | 97 …ive, the ESP-NETIF L2 TAP interface is accessed using file descriptors of VFS which provides a fil… 100 There is only one ESP-NETIF L2 TAP interface device (path name) available. However multiple file de… 102 Important is then specific configuration of particular file descriptor. It can be configured to giv… 107 in and the remaining traffic is either passed to other L2 TAP file descriptors or to IP stack.
|
/hal_espressif-latest/components/esp_rom/esp32/ld/ |
D | esp32.rom.redefined.ld | 2 ROM Functions defined in this file are not used in ESP-IDF as is, 4 This file is not used when linking ESP-IDF and is intended for reference only
|
/hal_espressif-latest/components/esp_system/ld/ |
D | ld.cmake | 14 file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/ld") 16 # Process the template file through the linker script generation mechanism, and use the output for …
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32c3/ |
D | operations.py | 392 for file in scripts: 393 with open(file.name, "r") as file: 394 exec(compile(file.read(), file.name, "exec"))
|