/hal_espressif-latest/tools/esptool_py/ci/ |
D | download_flasher_stubs.py | 54 DESTINATION_DIR = os.path.join("esptool", "targets", "stub_flasher") 64 dest_sub_dir = os.path.join(DESTINATION_DIR, stub_set["STUB_SET_VERSION"]) 69 for old_file in glob.glob(os.path.join(dest_sub_dir, "*.json")): 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) 80 with open(os.path.join(dest_sub_dir, "README.md"), "w") as f: 85 URL="/".join((stub_set["TAG_URL"], stub_set["VERSION"])),
|
/hal_espressif-latest/tools/esptool_py/test/ |
D | test_espsecure_hsm.py | 37 f = open(os.path.join(TEST_DIR, "secure_images", image_file), "rb") 111 configfile = os.path.join(TEST_DIR, "secure_images", filename) 159 os.path.join(TEST_DIR, "secure_images", "softhsm_v2.ini"), 169 os.path.join(TEST_DIR, "secure_images", "softhsm_v2.ini"), 185 os.path.join(TEST_DIR, "secure_images", "softhsm_v2_1.ini"), 200 os.path.join(TEST_DIR, "secure_images", "softhsm_v2_2.ini"), 215 os.path.join(TEST_DIR, "secure_images", "softhsm_v2_3.ini"), 225 os.path.join(TEST_DIR, "secure_images", "softhsm_v2_1.ini"), 235 os.path.join(TEST_DIR, "secure_images", "softhsm_v2_2.ini"), 245 os.path.join(TEST_DIR, "secure_images", "softhsm_v2_3.ini"),
|
D | test_image_info.py | 16 IMAGES_DIR = os.path.join(os.path.abspath(os.path.dirname(__file__)), "images") 22 with open(os.path.join(IMAGES_DIR, filename), "rb") as f: 46 cmd += [file] if os.path.isfile(file) else ["".join([IMAGES_DIR, os.sep, file])] 47 print("\nExecuting {}".format(" ".join(cmd))) 213 "".join([IMAGES_DIR, os.sep, "bootloader_esp32_v5_2.bin"]),
|
D | test_uf2_ids.py | 66 pytest.fail("\n".join(out))
|
D | test_esptool.py | 67 os.path.join(TEST_DIR, "..", "esp_rfc2217_server.py"), 124 print("\nExecuting {}...".format(" ".join(cmd))) 153 print("Executing {}...".format(" ".join(cmd))) 1454 features = ", ".join(esp.get_chip_features()) 1526 config_file_path = os.path.join(os.getcwd(), "esptool.cfg") 1558 config_file_path = os.path.join(os.getcwd(), "tox.ini") 1565 config_file_path = os.path.join(TEST_DIR, "custom_file.ini") 1593 config_file_path = os.path.join(os.getcwd(), "esptool.cfg") 1618 config_file_path = os.path.join(os.getcwd(), "esptool.cfg")
|
D | test_espsecure.py | 37 print("\nExecuting {}...".format(" ".join(cmd))) 60 f = open(os.path.join(TEST_DIR, "secure_images", image_file), "rb") 138 keyfile_name = os.path.join(keydir, "key.pem") 145 keyfile_name = os.path.join(keydir, "key.pem") 773 keyfile_name = os.path.join(keydir, "key.pem")
|
D | test_espefuse.py | 40 IMAGES_DIR = os.path.join(TEST_DIR, "images", "efuse") 41 S_IMAGES_DIR = os.path.join(TEST_DIR, "secure_images") 42 EFUSE_S_DIR = os.path.join(TEST_DIR, "efuse_scripts") 133 hex_blk = " ".join(f"{num:02x}" for num in blk) 137 full_cmd = " ".join((f"{sys.executable} -m espefuse", cmd)) 141 full_cmd = " ".join( 146 " ".join([self.base_cmd, "check_error"]), "No errors detected", 0 1871 os.chdir(os.path.join(TEST_DIR, "efuse_scripts", name)) 1881 os.chdir(os.path.join(TEST_DIR, "efuse_scripts", name))
|
/hal_espressif-latest/tools/esptool_py/esp_rfc2217_server/ |
D | redirector.py | 56 self.write(b"".join(self.rfc2217.escape(data))) 76 self.serial.write(b"".join(self.rfc2217.filter(data))) 88 self.thread_read.join() 89 self.thread_poll.join()
|
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/ |
D | constants.py | 41 PANIC_OUTPUT_DECODE_SCRIPT = os.path.join(os.path.dirname(__file__), '..', 'gdb_panic_server.py') 42 COREDUMP_SCRIPT = os.path.join(os.path.dirname(__file__), '..', '..', 'components', 'espcoredump', …
|
D | output_helpers.py | 30 sys.path.insert(0, os.path.join(ZEPHYR_BASE, "scripts", "west_commands")) 82 red_print('%s: %s' % (' '.join(cmd), e))
|
D | stoppable_thread.py | 68 old_thread.join()
|
/hal_espressif-latest/tools/ |
D | esp_bin2c_array.py | 13 line = ', '.join([ '0x{val:02x}'.format(val=c) for c in x ]) 17 return '\n'.join(out)
|
/hal_espressif-latest/tools/esptool_py/esptool/ |
D | config.py | 44 suffix, ", ".join(unknown_opts) 56 cfg_path = os.path.join(dir_path, candidate)
|
/hal_espressif-latest/tools/esptool_py/flasher_stub/ |
D | wrap_stub.py | 20 BUILD_DIR = os.path.join(THIS_DIR, "build") 73 with open(os.path.join(BUILD_DIR, filename), "w") as outfile:
|
D | compare_stubs.py | 78 old = os.path.join(THIS_SCRIPT_DIR, STUB_DIR, JSON_NAME.format(chip)) 79 new = os.path.join(THIS_SCRIPT_DIR, BUILD_DIR, JSON_NAME.format(chip))
|
D | esptool_test_stub.py | 17 STUBS_BUILD_DIR = os.path.join(THIS_DIR, "build/")
|
/hal_espressif-latest/components/esp_system/ |
D | check_system_init_priorities.py | 50 …glob_iter = glob.glob(os.path.join(idf_path, 'components', '**', f'*.{extension}'), recursive=True) 83 with open(os.path.join(idf_path, STARTUP_ENTRIES_FILE), 'r') as startup_entries_expected_file:
|
/hal_espressif-latest/components/bt/host/bluedroid/external/sbc/decoder/srce/ |
D | decoder-private.c | 177 common->frameInfo.join = *b++; in OI_SBC_ReadScalefactors() 179 common->frameInfo.join = 0; in OI_SBC_ReadScalefactors() 193 common->frameInfo.join = HIGH(f = *b++); in OI_SBC_ReadScalefactors()
|
/hal_espressif-latest/west/ |
D | tools.py | 26 sys.path.insert(0, os.path.join(ZEPHYR_BASE, "scripts", "west_commands")) 48 esptool_path = os.path.join(module_path, 'tools', 'esptool_py')
|
/hal_espressif-latest/zephyr/scripts/partitions/ |
D | esp_genpartition.py | 164 f.write("\n".join(output)) 187 f.write("\n".join(output))
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/esp32/ |
D | operations.py | 36 help="Burn a 256-bit key to EFUSE: %s" % ", ".join(efuses.BLOCKS_FOR_KEYS), 241 else " ".join(["??"] * len(data)) 308 else " ".join(["??"] * len(digest))
|
/hal_espressif-latest/tools/esptool_py/espefuse/efuse/ |
D | util.py | 12 return separator.join(("%02x" % b) for b in as_bytes)
|
D | base_operations.py | 70 "[{}].".format(", ".join([e.name for e in efuses.efuses])), 323 value = "".join(v) 447 "".join("{}".format(blocked_efuses_after_burn[i : i + 5 :])), 615 names = ", ".join(e.name for e in all_disabling) 650 names = ", ".join(e.name for e in all_disabling)
|
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/ |
D | scripting.rst | 13 print('Using command %s' % ' '.join(command))
|
/hal_espressif-latest/components/efuse/ |
D | efuse_table_gen.py | 276 return '\n'.join(rows) 348 return '\n'.join(rows) 437 return ', '.join([start + self.efuse_block, 476 file_h_path = os.path.join(dir_for_file_h, file_name + '.h') 477 file_c_path = os.path.join(gen_dir, file_name + '.c')
|