Home
last modified time | relevance | path

Searched refs:die (Results 1 – 25 of 128) sorted by relevance

123456

/Zephyr-latest/scripts/build/
Dgen_kobject_list.py158 def debug_die(die, text): argument
159 lp_header = die.dwarfinfo.line_program_for_CU(die.cu).header
163 fileinfo = files[die.attributes["DW_AT_decl_file"].value - 1]
168 lineno = die.attributes["DW_AT_decl_line"].value
170 debug(str(die))
358 def die_get_spec(die): argument
359 if 'DW_AT_specification' not in die.attributes:
362 spec_val = die.attributes["DW_AT_specification"].value
365 offset = spec_val + die.cu.cu_offset
370 def die_get_name(die): argument
[all …]
/Zephyr-latest/scripts/footprint/
Dsize_report76 def get_die_mapped_address(die, parser, dwarfinfo): argument
81 if die.tag == 'DW_TAG_variable':
82 if 'DW_AT_location' in die.attributes:
83 loc_attr = die.attributes['DW_AT_location']
84 if parser.attribute_has_location(loc_attr, die.cu['version']):
85 loc = parser.parse_from_attribute(loc_attr, die.cu['version'], die)
95 if die.tag == 'DW_TAG_subprogram':
96 if 'DW_AT_low_pc' in die.attributes:
97 low = die.attributes['DW_AT_low_pc'].value
99 high_pc = die.attributes['DW_AT_high_pc']
[all …]
/Zephyr-latest/scripts/logging/dictionary/
Ddatabase_gen.py300 def find_die_var_base_type(compile_unit, die, is_const): argument
308 if die.tag == 'DW_TAG_base_type':
309 return die.attributes['DW_AT_name'].value.decode('ascii'), is_const
312 if not 'DW_AT_type' in die.attributes:
315 if die.tag == 'DW_TAG_const_type':
320 type_attr = die.attributes['DW_AT_type']
331 def is_die_var_const_char(compile_unit, die): argument
335 var_type, is_const = find_die_var_base_type(compile_unit, die, False)
357 for die in compile_unit.iter_DIEs():
360 if die.tag == 'DW_TAG_variable':
[all …]
/Zephyr-latest/scripts/west_commands/
Dsign.py194 self.die('imgtool does not support --if-tool-available')
201 self.die('one --tool is required')
203 self.die(f'invalid tool: {args.tool}')
254 command.die(f"no unsigned .bin found at {in_bin}")
261 command.die(f"no unsigned .hex found at {in_hex}")
304 cmd.die(f'--tool-path {imgtool}: no such file')
308 cmd.die('imgtool not found; either install it',
343 cmd.die("can't load devicetree; expected to find:", edt_pickle)
353 cmd.die('devicetree has no chosen zephyr,flash node;',
371 cmd.die("DT zephyr,flash chosen node has no partitions,",
[all …]
Dpackages.py102 self.die(
116 self.die(f'Unknown zephyr module "{m}"')
122 self.die(f'Unsupported package manager: "{args.manager}"')
149 self.die("Running pip install outside of a virtual environment")
162 self.die(f'west packages pip does not support unknown arguments: "{manager_args}"')
Dbindesc.py38 cmd.die(f'Invalid UF2 data size at {ptr}')
44 cmd.die(f'Block out of order at {ptr}')
46 cmd.die(f'More than 10M of padding needed at {ptr}')
48 cmd.die(f'Non-word padding size at {ptr}')
178 self.die('Descriptor not found')
184 self.die(f'Descriptor {args.descriptor} is invalid')
203 self.die('Could not find binary descriptor magic')
240 self.die('No "rom_start" or "text" section found')
242 self.die('Unknown file type')
248 self.die('Could not find binary descriptor magic')
[all …]
Dsdk.py192 self.die(f"Unsupported system: {system}")
199 self.die(f"Unsupported machine: {machine}")
215 self.die(f"{str(sdk_version_file)} does not exist.")
226 self.die(f"Invalid version format: {version}")
229 self.die(f"Versions older than v0.14.1 are not supported.")
352 self.die(pe)
367 self.die(f"command \"{' '.join(cmds_cmake_pkg)}\" failed")
385 self.die(f"command \"{' '.join(cmds)}\" failed")
417 self.die(
439 self.die(
[all …]
Dzephyr_ext_common.py47 self.die('refusing to proceed without --force due to above error')
59 self.die(f'Single word expected for: {section_key}={words}. Use quotes?')
Drun_common.py78 log.die(fmt)
267 … log.die("Duplicate flash run once configuration found with equal priorities")
467 log.die(f'runner {runner_name} received unknown arguments: {unknown}')
495 log.die('required program', e.filename,
499 log.die(re)
524 log.die(msg.format(getcwd(), dir))
533 log.die(f'no CMake cache found (expected one at {cache_file})')
541 log.die(f're-build in {args.build_dir} failed')
543 log.die(f're-build in {build_dir} failed (no --build-dir given)')
548 log.die(f'no runners.yaml found in {build_dir}/zephyr. '
[all …]
Dbuild.py208 self.die("No test metadata found")
210 self.die("test item path does not exist")
214 self.die("source directory specified twice:({} and {})".format(
329 self.die(exc)
333 self.die(f"No tests found in {yf}")
335 self.die(f"Test item {test_item} not found in {yf}")
454 self.die('Unable to determine a default build folder. Check '
459 self.die('build directory {} exists and is not a directory'.
487 self.die('build directory', self.build_dir,
497 self.die('source and build directory {} cannot be the same; '
[all …]
Dzcmake.py44 log.die('CMake is not installed or cannot be found; cannot build.')
279 log.die('cannot get cmake version:', str(cpe))
283 log.die('can\'t get cmake version: ' +
294 log.die('cmake version', version,
Dspdx.py70 self.die("Build directory not specified; call `west spdx --init --build-dir=BUILD_DIR`")
82 self.die("Build directory not specified; call `west spdx --build-dir=BUILD_DIR`")
/Zephyr-latest/samples/sensor/die_temp_polling/
DREADME.rst2 :name: CPU die temperature polling
5 Get CPU die temperature data from a sensor using polling.
17 and create an alias named ``die-temp0`` to link to the node.
/Zephyr-latest/samples/sensor/die_temp_polling/boards/
Dnrf51dk_nrf51822.overlay9 die-temp0 = &temp;
Dnrf52840dk_nrf52840.overlay9 die-temp0 = &temp;
Dfrdm_mcxc242.overlay9 die-temp0 = &temp0;
Dnucleo_h7a3zi_q.overlay11 die-temp0 = &digi_die_temp;
Dnucleo_f756zg.overlay9 die-temp0 = &die_temp;
/Zephyr-latest/drivers/sensor/nxp/nxp_tempmon/
DKconfig12 This is used to retrieve on-die operational temperature.
/Zephyr-latest/soc/infineon/cat1a/psoc6_01/
DKconfig.defconfig16 # add additional die specific params
/Zephyr-latest/soc/infineon/cat1a/psoc6_03/
DKconfig.defconfig16 # add additional die specific params
/Zephyr-latest/soc/infineon/cat1a/psoc6_04/
DKconfig.defconfig16 # add additional die specific params
/Zephyr-latest/soc/infineon/cat1a/psoc6_legacy/
DKconfig.defconfig16 # add additional die specific params
/Zephyr-latest/soc/infineon/cat1a/psoc6_02/
DKconfig.defconfig19 # add additional die specific params
/Zephyr-latest/soc/infineon/cat1b/cyw20829/
DKconfig.defconfig25 # add additional die specific params

123456