Home
last modified time | relevance | path

Searched refs:bin (Results 1 – 25 of 193) sorted by relevance

12345678

/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.sh20 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
67 $GEN_EMPTY_PARTITION_PY $(($size)) blank.bin
69 assert_file_same read.bin blank.bin "Contents of storage partition not fully erased"
[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/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/components/nvs_flash/nvs_partition_generator/
DREADME_CN.rst34 | | | 决定二进制 ``bin`` 文件中 value 被编码成的类型。 | ``hex2bin``、``base64``、 …
151 python nvs_partition_gen.py generate sample_singlepage_blob.csv sample.bin 0x3000
226 python nvs_partition_gen.py encrypt sample_singlepage_blob.csv sample_encr.bin 0x3000 --keygen
228 .. note:: 创建的加密密钥格式为 ``<outdir>/keys/keys-<timestamp>.bin``。
232 …gen.py encrypt sample_singlepage_blob.csv sample_encr.bin 0x3000 --keygen --keyfile sample_keys.bi…
234 .. note:: 创建的加密密钥格式为 ``<outdir>/keys/keys-<timestamp>.bin``。
239 …tition_gen.py encrypt sample_singlepage_blob.csv sample_encr.bin 0x3000 --inputkey sample_keys.bin
273 python nvs_partition_gen.py decrypt sample_encr.bin sample_keys.bin sample_decr.bin
285 python nvs_partition_gen.py generate sample_singlepage_blob.csv sample.bin 0x3000 --version 1
292 python nvs_partition_gen.py generate sample_multipage_blob.csv sample.bin 0x4000 --version 2
/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/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/otatool/
Dotatool_example.sh19 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
/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
/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/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/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/esptool_py/esptool/docs/en/esptool/
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…
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 …]
/hal_espressif-3.4.0/components/esp_phy/
DCMakeLists.txt22 if(NOT EXISTS "${build_dir}/phy_multiple_init_data.bin")
23 …file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/${idf_target}/phy_multiple_init_data.bin DESTINATION "${buil…
28 set(embed_files "${build_dir}/phy_multiple_init_data.bin")
73 set(phy_init_data_bin "${build_dir}/phy_multiple_init_data.bin")
75 set(COMPONENT_EMBED_FILES "${build_dir}/phy_multiple_init_data.bin")
78 set(phy_init_data_bin "${build_dir}/phy_init_data.bin")
80 # To get the phy_init_data.bin file, compile phy_init_data.h as a C file and then objcopy
/hal_espressif-3.4.0/components/mdns/test_afl_fuzz_host/
Dinput_packets.txt1 Input: in/test-14.bin
31 Input: in/test-15.bin
41 Input: in/test-16.bin
47 Input: in/test-28.bin
52 Input: in/test-29.bin
58 Input: in/test-31.bin
65 Input: in/test-53.bin
74 Input: in/test-56.bin
86 Input: in/test-63.bin
95 Input: in/test-66.bin
[all …]
/hal_espressif-3.4.0/docs/zh_CN/api-guides/
Dpartition-tables.rst162 python gen_esp32part.py input_partitions.csv binary_partitions.bin
166 python gen_esp32part.py binary_partitions.bin input_partitions.csv
170 python gen_esp32part.py binary_partitions.bin
259 # 读取类型为 'data'、子类型为 'spiffs' 的分区,保存至文件 'spiffs.bin'
260 target.read_partition(PartitionType("data", "spiffs"), "spiffs.bin")
262 # 将 'factory.bin' 文件的内容写至 'factory' 分区
263 target.write_partition(PartitionName("factory"), "factory.bin")
291 # 读取类型为 'data'、子类型为 'spiffs' 的分区,保存到 'spiffs.bin' 文件
292 …/dev/ttyUSB1" read_partition --partition-type=data --partition-subtype=spiffs --output "spiffs.bin"
294 # 将 'factory.bin' 文件中的内容写入到 'factory' 分区
[all …]
/hal_espressif-3.4.0/tools/unit-test-app/
DMakefile38 ut-build-$(1): $$(BINARIES_DIR)/$(1)/$$(PROJECT_NAME).bin
56 $(BINARIES_DIR)/%/bootloader.bin \
59 $(BINARIES_DIR)/%/$(PROJECT_NAME).bin: configs/%
95 cp $(BUILDS_DIR)/$*/bootloader/bootloader.bin $(BINARIES_DIR)/$*/bootloader/
97 cp $(BUILDS_DIR)/$*/$(PROJECT_NAME).bin $(BINARIES_DIR)/$*/
99 cp $(BUILDS_DIR)/$*/*.bin $(BINARIES_DIR)/$*/
/hal_espressif-3.4.0/components/nvs_flash/test/
DCMakeLists.txt4 EMBED_TXTFILES encryption_keys.bin partition_encrypted.bin sample.bin)
Dcomponent.mk6 COMPONENT_EMBED_TXTFILES += encryption_keys.bin partition_encrypted.bin sample.bin

12345678