Home
last modified time | relevance | path

Searched refs:unpack (Results 1 – 16 of 16) sorted by relevance

/hal_espressif-2.7.6/examples/protocols/esp_local_ctrl/scripts/
Desp_local_ctrl.py81 return struct.unpack('q', value)[0]
83 return struct.unpack('i', value)[0]
85 return struct.unpack('?', value)[0]
/hal_espressif-2.7.6/tools/esp_app_trace/
Dlogtrace_proc.py52 nargs,fmt_addr = struct.unpack(ESP32_LOGTRACE_HDR_FMT, trc_buf)
68 log_args = struct.unpack('<%sL' % nargs, trc_buf)
/hal_espressif-2.7.6/docs/zh_CN/get-started-legacy/
Dlinux-setup.rst48 .. include-build-file:: inc/unpack-code-linux64.inc
52 .. include-build-file:: inc/unpack-code-linux32.inc
Dmacos-setup.rst30 .. include-build-file:: inc/unpack-code-osx.inc
/hal_espressif-2.7.6/tools/esp_app_trace/espytrace/
Dsysview.py175 sync_bytes = struct.unpack(SYNC_SEQ_FMT, reader.read(struct.calcsize(SYNC_SEQ_FMT)))
198 b, = struct.unpack('<B', reader.read(1))
261 sz, = struct.unpack('<B', reader.read(1))
263 buf = struct.unpack('<2B', reader.read(2))
265 val, = struct.unpack('<%ds' % sz, reader.read(sz))
287 b0, = struct.unpack('<B', reader.read(1))
289 b1, = struct.unpack('<B', reader.read(1))
699 evt_hdr, = struct.unpack('<B', reader.read(1))
704 b, = struct.unpack('<B', reader.read(1))
/hal_espressif-2.7.6/tools/test_mkuf2/
Dtest_mkuf2.py65 self.numBlocks, self.familyID) = struct.unpack(first_part, bs[:first_part_len])
69 (self.magicEnd, ) = struct.unpack(last_part, bs[-last_part_len:])
157 address, length = struct.unpack('<II', md5_part[:-md5_obj.digest_size])
/hal_espressif-2.7.6/examples/peripherals/i2s_adc_dac/tools/
Dgenerate_audio_file.py15 val, = struct.unpack('<H', wave_read.readframes(1))
/hal_espressif-2.7.6/docs/en/get-started-legacy/
Dlinux-setup.rst48 .. include-build-file:: inc/unpack-code-linux64.inc
52 .. include-build-file:: inc/unpack-code-linux32.inc
Dmacos-setup.rst30 .. include-build-file:: inc/unpack-code-osx.inc
/hal_espressif-2.7.6/examples/protocols/mqtt/tcp/
Dmqtt_tcp_example_test.py47 msgid = struct.unpack('>H', data[15:17])[0]
/hal_espressif-2.7.6/components/app_update/
Dotatool.py89 seq = struct.unpack('>I', seq)
90 crc = struct.unpack('>I', crc)
/hal_espressif-2.7.6/components/partition_table/test_gen_esp32part_host/
Dgen_esp32part_tests.py204 eo, es = struct.unpack('<LL', tb[4:12])
/hal_espressif-2.7.6/docs/en/api-reference/storage/
Dspiffs.rst129 1. If you need to unpack SPIFFS images in addition to image generation. For now, it is not possible…
/hal_espressif-2.7.6/components/partition_table/
Dgen_esp32part.py378 res.size, res.name, flags) = struct.unpack(cls.STRUCT_FORMAT, b)
/hal_espressif-2.7.6/tools/
Didf_tools.py294 def unpack(filename, destination): function
722 unpack(archive_path, dest_dir)
/hal_espressif-2.7.6/components/nvs_flash/nvs_partition_generator/
Dnvs_partition_gen.py513 curr_page_state = struct.unpack('<I', self.cur_page.page_buf[0:4])[0]