/Zephyr-latest/scripts/build/ |
D | gen_kobject_list.py | 158 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/ |
D | size_report | 76 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/ |
D | database_gen.py | 300 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/ |
D | sign.py | 194 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 …]
|
D | packages.py | 102 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}"')
|
D | bindesc.py | 38 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 …]
|
D | sdk.py | 192 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 …]
|
D | zephyr_ext_common.py | 47 self.die('refusing to proceed without --force due to above error') 59 self.die(f'Single word expected for: {section_key}={words}. Use quotes?')
|
D | run_common.py | 78 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 …]
|
D | build.py | 208 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 …]
|
D | zcmake.py | 44 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,
|
D | spdx.py | 70 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/ |
D | README.rst | 2 :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/ |
D | nrf51dk_nrf51822.overlay | 9 die-temp0 = &temp;
|
D | nrf52840dk_nrf52840.overlay | 9 die-temp0 = &temp;
|
D | frdm_mcxc242.overlay | 9 die-temp0 = &temp0;
|
D | nucleo_h7a3zi_q.overlay | 11 die-temp0 = &digi_die_temp;
|
D | nucleo_f756zg.overlay | 9 die-temp0 = &die_temp;
|
/Zephyr-latest/drivers/sensor/nxp/nxp_tempmon/ |
D | Kconfig | 12 This is used to retrieve on-die operational temperature.
|
/Zephyr-latest/soc/infineon/cat1a/psoc6_01/ |
D | Kconfig.defconfig | 16 # add additional die specific params
|
/Zephyr-latest/soc/infineon/cat1a/psoc6_03/ |
D | Kconfig.defconfig | 16 # add additional die specific params
|
/Zephyr-latest/soc/infineon/cat1a/psoc6_04/ |
D | Kconfig.defconfig | 16 # add additional die specific params
|
/Zephyr-latest/soc/infineon/cat1a/psoc6_legacy/ |
D | Kconfig.defconfig | 16 # add additional die specific params
|
/Zephyr-latest/soc/infineon/cat1a/psoc6_02/ |
D | Kconfig.defconfig | 19 # add additional die specific params
|
/Zephyr-latest/soc/infineon/cat1b/cyw20829/ |
D | Kconfig.defconfig | 25 # add additional die specific params
|