Home
last modified time | relevance | path

Searched refs:f_path (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.6.0/tools/test_mkdfu/
Dtest_mkdfu.py53 for addr, f_path in file_args:
54 args += [str(addr), f_path]
58 for addr, f_path in sorted(file_args, key=lambda e: e[0]):
59 p.expect_exact('Adding {} at {}'.format(f_path, hex(addr)))
/hal_espressif-3.6.0/tools/
Dmkuf2.py93 def add_file(self, addr, f_path): argument
94 blocks = round_up_int_div(os.path.getsize(f_path), self.CHUNK_SIZE)
95 with open(f_path, 'rb') as fin: