Home
last modified time | relevance | path

Searched full:bin (Results 1 – 25 of 448) sorted by relevance

12345678910>>...18

/hal_espressif-3.4.0/components/wpa_supplicant/src/utils/
Duuid.c14 int uuid_str2bin(const char *str, u8 *bin) in uuid_str2bin() argument
20 opos = bin; in uuid_str2bin()
49 int uuid_bin2str(const u8 *bin, char *str, size_t max_len) in uuid_bin2str() argument
54 bin[0], bin[1], bin[2], bin[3], in uuid_bin2str()
55 bin[4], bin[5], bin[6], bin[7], in uuid_bin2str()
56 bin[8], bin[9], bin[10], bin[11], in uuid_bin2str()
57 bin[12], bin[13], bin[14], bin[15]); in uuid_bin2str()
/hal_espressif-3.4.0/examples/storage/parttool/
Dparttool_example.sh1 #!/usr/bin/env bash
7 # $2 - path to this example's built binary file (parttool.bin), by default $PWD/build/parttool.bin
20 BINARY=build/parttool.bin
37 $PARTTOOL_PY read_partition --partition-type=app --partition-subtype=factory --output=app.bin
38 assert_file_same app.bin $BINARY "Device app binary does not match built binary"
46 head -c $(($size)) /dev/urandom > write.bin
50 $PARTTOOL_PY write_partition --partition-name=storage --input write.bin
54 $PARTTOOL_PY read_partition --partition-name=storage --output read.bin
56 assert_file_same write.bin read.bin "Read contents of storage partition does not match source file …
64 $PARTTOOL_PY read_partition --partition-name=storage --output read.bin
[all …]
Dparttool_example.py1 #!/usr/bin/env python
52 …-binary', '-b', help='path to built example binary', default=os.path.join('build', 'parttool.bin'))
62 target.read_partition(factory, 'app.bin')
63 assert_file_same(args.binary, 'app.bin', 'Device app binary does not match built binary')
71 with open('write.bin', 'wb') as f:
77 target.write_partition(storage, 'write.bin')
81 target.read_partition(storage, 'read.bin')
83 …assert_file_same('write.bin', 'read.bin', 'Read contents of storage partition does not match sourc…
91 target.read_partition(storage, 'read.bin')
94 generate_blanked_file(storage_info.size, 'blank.bin')
[all …]
/hal_espressif-3.4.0/components/esptool_py/esptool/docs/en/espefuse/
Ddump-cmd.rst13 …file. Provide the common path name like /path/blk.bin, it will create: blk0.bin, blk1.bin ... blkN…
88 …`/chip1/blk.bin``, it will create files in the given directory (the directory must exist): /chip1/…
92 > espefuse.py dump --file_name backup/chip1/blk.bin
95 backup/chip1/blk0.bin
96 backup/chip1/blk1.bin
97 backup/chip1/blk2.bin
98 backup/chip1/blk3.bin
99 backup/chip1/blk4.bin
100 backup/chip1/blk5.bin
101 backup/chip1/blk6.bin
[all …]
/hal_espressif-3.4.0/tools/test_mkdfu/
Dtest_mkdfu.py1 #!/usr/bin/env python
84 bins = [('0x1000', '1.bin'), ('0x8000', '2.bin'), ('0x10000', '3.bin')]
87 self.common_test(json_input=f.name, output_to_compare='1/dfu.bin')
91 self.common_test(file_args=[(0x1000, '1/1.bin'),
92 (0x8000, '1/2.bin'),
93 (0x10000, '1/3.bin')],
94 output_to_compare='1/dfu.bin')
105 shutil.copyfile(os.path.join(current_dir, '1', '1.bin'), bootloader)
108 (0x8000, os.path.join(current_dir, '1', '2.bin')),
109 (0x10000, os.path.join(current_dir, '1', '3.bin'))])
[all …]
/hal_espressif-3.4.0/tools/test_idf_tools/
Dtest_idf_tools.py1 #!/usr/bin/env python
168 self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
170 self.assertIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
172 self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
174 self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
176 self.assertIn('%s/tools/esp32s2ulp-elf/%s/esp32s2ulp-elf-binutils/bin' %
178 self.assertIn('%s/tools/xtensa-esp32s2-elf/%s/xtensa-esp32s2-elf/bin' %
180 self.assertIn('%s/tools/xtensa-esp32s3-elf/%s/xtensa-esp32s3-elf/bin' %
202 self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
204 self.assertIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
[all …]
/hal_espressif-3.4.0/tools/mass_mfg/samples/
Dsample_values_multipage_blob.csv2 …e64,testdata/sample.txt,testdata/sample_blob.bin,testdata/sample_blob.bin,testdata/sample_multipag…
3 …e64,testdata/sample.txt,testdata/sample_blob.bin,testdata/sample_blob.bin,testdata/sample_multipag…
4 …e64,testdata/sample.txt,testdata/sample_blob.bin,testdata/sample_blob.bin,testdata/sample_multipag…
Dsample_values_singlepage_blob.csv2 …64,testdata/sample.txt,testdata/sample_blob.bin,testdata/sample_blob.bin,testdata/sample_singlepag…
3 …64,testdata/sample.txt,testdata/sample_blob.bin,testdata/sample_blob.bin,testdata/sample_singlepag…
4 …64,testdata/sample.txt,testdata/sample_blob.bin,testdata/sample_blob.bin,testdata/sample_singlepag…
/hal_espressif-3.4.0/examples/system/ota/otatool/
Dotatool_example.sh1 #!/usr/bin/env bash
7 # $2 - path to this example's built binary file (parttool.bin), by default $PWD/build/otatool.bin
19 BINARY=build/otatool.bin
53 $OTATOOL_PY read_ota_partition --name ota_0 --output app0.bin
54 $OTATOOL_PY read_ota_partition --slot 1 --output app1.bin
56 assert_file_same $BINARY app0.bin "Slot 0 app does not match factory app"
57 assert_file_same $BINARY app1.bin "Slot 1 app does not match factory app"
95 rm -rf app0.bin app1.bin
Dotatool_example.py1 #!/usr/bin/env python
57 …--binary', '-b', help='path to built example binary', default=os.path.join('build', 'otatool.bin'))
70 target.read_ota_partition('ota_0', 'app0.bin')
71 target.read_ota_partition(1, 'app1.bin')
73 assert_file_same('app0.bin', args.binary, 'Slot 0 app does not match factory app')
74 assert_file_same('app1.bin', args.binary, 'Slot 1 app does not match factory app')
112 clean_files = ['app0.bin', 'app1.bin']
/hal_espressif-3.4.0/tools/test_idf_size/
Dapp_esp32s2.map231 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
233 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
235 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
237 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
239 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
241 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
243 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
245 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
247 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
249 /home/xy/.espressif/tools/xtensa-esp32s2-elf/esp-2019r2-8.2.0/xtensa-esp32s2-elf/bin/../lib/gcc/xte…
[all …]
Dapp_esp32h2.map271 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
273 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
274 …/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-…
275 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
277 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
279 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
281 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
283 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
285 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
287 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
[all …]
Dapp_esp32c3.map279 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
281 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
282 …/home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-…
283 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
285 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
287 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
289 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
291 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
293 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
295 /home/xy/.espressif/tools/riscv32-esp-elf/esp-2021r1-8.4.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-e…
[all …]
Dapp2.map251 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
253 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
255 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
257 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
259 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
261 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
263 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
265 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
267 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
269 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-…
[all …]
Dapp_esp32s3.map301 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
303 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
305 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
307 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
309 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
311 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
313 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
315 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
317 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
319 /home/xy/.espressif/tools/xtensa-esp32s3-elf/esp-2021r1-8.4.0/xtensa-esp32s3-elf/bin/../lib/gcc/xte…
[all …]
/hal_espressif-3.4.0/docs/zh_CN/get-started/
Dlinux-setup-scratch.rst48 … gperf grep gettext python python-dev automake bison flex texinfo help2man libtool libtool-bin make
52 …text libncurses-dev python python-dev automake bison flex texinfo help2man libtool libtool-bin make
84 export PATH="$HOME/esp/{IDF_TARGET_TOOLCHAIN_PREFIX}/bin:$PATH"
88 …如果您已将 ``/bin/bash`` 设置为登录 shell,且同时存在 ``.bash_profile`` 和 ``.profile`` 两个文件,则请更新 ``.bash_profile``…
97 …}/bin:/home/user-name/bin:/home/user-name/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr…
/hal_espressif-3.4.0/examples/system/ota/simple_ota_example/
Dexample_test.py113 bootloader_path = os.path.join(dut.app.binary_path, 'bootloader', 'bootloader.bin')
118 app_path = os.path.join(dut.app.binary_path, 'simple_ota.bin')
135 # check and log bin size
136 binary_file = os.path.join(dut1.app.binary_path, 'simple_ota.bin')
158 print('writing to device: {}'.format('https://' + host_ip + ':8000/simple_ota.bin'))
159 dut1.write('https://' + host_ip + ':8000/simple_ota.bin')
174 # check and log bin size
175 binary_file = os.path.join(dut1.app.binary_path, 'simple_ota.bin')
194 print('writing to device: {}'.format('https://' + host_ip + ':8000/simple_ota.bin'))
195 dut1.write('https://' + host_ip + ':8000/simple_ota.bin')
[all …]
/hal_espressif-3.4.0/docs/zh_CN/get-started-legacy/
Dlinux-setup.rst60 export PATH="$HOME/esp/xtensa-esp32-elf/bin:$PATH"
64 alias get_esp32='export PATH="$HOME/esp/xtensa-esp32-elf/bin:$PATH"'
70 …如果您已将 ``/bin/bash`` 设置为登录 shell,且同时存在 ``.bash_profile`` 和 ``.profile``,则请更新 ``.bash_profile`` 。在 C…
79 …f/bin:/home/user-name/bin:/home/user-name/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr…
/hal_espressif-3.4.0/components/esptool_py/esptool/docs/en/esptool/
Dbasic-commands.rst13 esptool.py --port COM4 write_flash 0x1000 my_app-0x01000.bin
19 esptool.py --port COM4 write_flash 0x00000 my_app.elf-0x00000.bin 0x40000 my_app.elf-0x40000.bin
45 …ort /dev/ttyUSB0 write_flash --flash_mode qio --flash_size 32m 0x0 bootloader.bin 0x1000 my_app.bin
47 …often needed as the default is to keep the flash mode and size from the ``.bin`` image file. See t…
106 esptool.py -p PORT -b 460800 read_flash 0 0x200000 flash_contents.bin
188 …IDF_TARGET_NAME} is two binary files: ``my_app.elf-0x00000.bin`` and ``my_app.elf-0x40000.bin``. Y…
194 esptool.py --chip {IDF_TARGET_NAME} elf2image --version=2 -o my_app-ota.bin my_app.elf
198 … "image file". By default this has the same name as the .elf file, with a .bin extension. For exam…
204 In the above example, the output image file would be called ``my_esp_app.bin``.
208 Output .bin Image Details: image_info
[all …]
Dflashing-firmware.rst28 …app binary can be found in ``.../esp-idf/examples/get-started/hello_world/build/hello_world.bin``.
46 …0x1000 build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 bu…
61bin/python2.7” “.../.platformio/packages/tool-esptoolpy/esptool.py” --chip esp32 --port “/dev/cu.u…
71 …0x1000 build/bootloader/bootloader.bin 0x8000 build/partition_table/partition-table.bin 0x10000 bu…
/hal_espressif-3.4.0/docs/en/get-started/
Dlinux-setup-scratch.rst48 … gperf grep gettext python python-dev automake bison flex texinfo help2man libtool libtool-bin make
52 …text libncurses-dev python python-dev automake bison flex texinfo help2man libtool libtool-bin make
84 export PATH="$HOME/esp/{IDF_TARGET_TOOLCHAIN_PREFIX}/bin:$PATH"
88 …If you have ``/bin/bash`` set as login shell, and both ``.bash_profile`` and ``.profile`` exist, t…
97 …}/bin:/home/user-name/bin:/home/user-name/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr…
/hal_espressif-3.4.0/components/partition_table/test_gen_esp32part_host/
Dcheck_sizes_test.py1 #!/usr/bin/env python
62 app = fake_file(512, 'test.bin')
67 app = fake_file(1500, 'too_big.bin')
71 self.assertIn('too_big.bin', str(e.exception))
75 app = fake_file(501, 'just_too_big.bin')
80 self.assertIn('just_too_big.bin', str(e.exception))
84 app = fake_file(501, 'big.bin')
92 bootloader = fake_file(25, 'test.bin')
96 bootloader = fake_file(40, 'test.bin')
/hal_espressif-3.4.0/docs/en/get-started-legacy/
Dlinux-setup.rst60 export PATH="$HOME/esp/xtensa-esp32-elf/bin:$PATH"
64 alias get_esp32='export PATH="$HOME/esp/xtensa-esp32-elf/bin:$PATH"'
70 …If you have ``/bin/bash`` set as login shell, and both ``.bash_profile`` and ``.profile`` exist, t…
79 …f/bin:/home/user-name/bin:/home/user-name/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr…
/hal_espressif-3.4.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/
Demk_project.py57 c.compiler = c.GccCompiler("/Projects/avr-tools/bin/avr-")
59 link.linker = link.GccLinker("/Projects/avr-tools/bin/avr-")
69 asm.assembler = asm.GccAssembler("/cross/arm_cortex/bin/arm-none-eabi-")
70 c.compiler = c.GccCompiler("/cross/arm_cortex/bin/arm-none-eabi-")
71 link.linker = link.GccLinker("/cross/arm_cortex/bin/arm-none-eabi-")
82 …utils.call("/cross/arm_cortex/bin/arm-none-eabi-objcopy", "-O", "binary", requires[0], produces[0])
86 emk.rule(do_objcopy, path + ".bin", path, cwd_safe=True, ex_safe=True)
87 emk.autobuild(path + ".bin")
98 c.compiler = c.GccCompiler("/Volumes/xtools/arm-none-linux-gnueabi/bin/arm-none-linux-gnueabi-")
99 … link.linker = link.GccLinker("/Volumes/xtools/arm-none-linux-gnueabi/bin/arm-none-linux-gnueabi-")
/hal_espressif-3.4.0/components/nvs_flash/test_nvs_host/
DMakefile91 rm -f ../nvs_partition_generator/partition_single_page.bin
92 rm -f ../nvs_partition_generator/partition_multipage_blob.bin
93 rm -f ../nvs_partition_generator/partition_encrypted.bin
94 rm -f ../nvs_partition_generator/partition_encrypted_using_keygen.bin
95 rm -f ../nvs_partition_generator/partition_encrypted_using_keyfile.bin
96 rm -f ../nvs_partition_generator/partition_decrypted.bin
97 rm -f ../nvs_partition_generator/partition_encoded.bin
98 rm -f ../nvs_partition_generator/Test-1-partition-encrypted.bin
99 rm -f ../nvs_partition_generator/Test-1-partition.bin

12345678910>>...18