Searched refs:runner (Results 1 – 25 of 239) sorted by relevance
12345678910
188 runner = BossacBinaryRunner(runner_config, port=TEST_BOSSAC_PORT)190 runner.run('flash')225 runner = BossacBinaryRunner.create(runner_config, arg_namespace)227 runner.run('flash')263 runner = BossacBinaryRunner.create(runner_config, arg_namespace)265 runner.run('flash')300 runner = BossacBinaryRunner.create(runner_config, arg_namespace)302 runner.run('flash')340 runner = BossacBinaryRunner.create(runner_config, arg_namespace)342 runner.run('flash')[all …]
52 runner = XSDBBinaryRunner(59 runner.do_run("flash")83 runner = XSDBBinaryRunner.create(runner_config, arg_namespace)85 runner.do_run("flash")
54 runner = DediProgBinaryRunner(runner_config, spi_image=spi_image,56 runner.run('flash')75 runner = DediProgBinaryRunner.create(runner_config, arg_namespace)76 runner.run('flash')
51 runner = Gd32ispBinaryRunner(runner_config, TEST_GD32ISP_DEV)53 runner.run('flash')68 runner = Gd32ispBinaryRunner.create(runner_config, arg_namespace)70 runner.run('flash')
84 runner = Stm32flashBinaryRunner(runner_config, device=TEST_DEVICE,91 runner.run('flash')108 runner = Stm32flashBinaryRunner.create(runner_config, arg_namespace)111 runner.run('flash')
64 runner = BlackMagicProbeRunner(runner_config, TEST_GDB_SERIAL)65 runner.run(command)77 runner = BlackMagicProbeRunner.create(runner_config, arg_namespace)78 runner.run(command)90 runner = BlackMagicProbeRunner.create(runner_config, arg_namespace)91 runner.run(command)
175 runner = s32dbg(s32dbg_args)176 runner.run('debugserver')207 runner = s32dbg(s32dbg_args)208 runner.run('debug')241 runner = s32dbg(s32dbg_args)242 runner.run('attach')
78 runner = CANopenBinaryRunner.create(runner_config, arg_namespace)80 runner.run('flash')86 logger=runner.logger,95 logger=runner.logger,
398 runner = STM32CubeProgrammerBinaryRunner(412 runner.run("flash")458 runner = STM32CubeProgrammerBinaryRunner.create(runner_config, arg_namespace)459 runner.run("flash")
84 runner = DfuUtilBinaryRunner(runner_config, TEST_PID, alt, img, exe=exe,87 runner.run('flash')134 runner = DfuUtilBinaryRunner.create(runner_config, arg_namespace)136 runner.run('flash')
5 # generator expression when writing the flash runner yaml file.33 runners_yaml_append("\n# Common runner configuration values.")82 # Save runner state in a YAML file.89 foreach(runner ${runners})90 runners_yaml_append("- ${runner}")94 runners_yaml_append("\n# Default flash runner if --runner is not given.")95 runners_yaml_append("flash-runner: ${BOARD_FLASH_RUNNER}")98 runners_yaml_append("\n# Default debug runner if --runner is not given.")99 runners_yaml_append("debug-runner: ${BOARD_DEBUG_RUNNER}")102 runners_yaml_append("\n# Default simulation runner if --runner is not given.")[all …]
24 runner='runner',49 device.device_config.runner = 'pyocd'60 device.device_config.runner = 'nrfjprog'71 device.device_config.runner = 'openocd'84 device.device_config.runner = 'openocd'97 device.device_config.runner = 'jlink'109 device.device_config.runner = 'stm32cubeprogrammer'121 device.device_config.runner = 'openocd'146 device.device_config.runner = 'openocd'174 device.device_config.runner = 'pyocd'
54 if self.device_config.runner:67 runner = self.device_config.runner68 base_args.extend(['--runner', runner])73 if runner == 'pyocd':76 elif runner in ('nrfjprog', 'nrfutil'):79 … elif runner == 'openocd' and self.device_config.product in ['STM32 STLink', 'STLINK-V3']:82 elif runner == 'openocd' and self.device_config.product == 'EDBG CMSIS-DAP':85 elif runner == "openocd" and self.device_config.product == "LPC-LINK2 CMSIS-DAP":88 elif runner == 'jlink':91 elif runner == 'stm32cubeprogrammer':[all …]
50 runner=None, argument66 self.runner = runner288 runner = dut.get('runner')300 runner=runner,366 runner='unknown',369 for runner, _ in self.runner_mapping.items():370 products = self.runner_mapping.get(runner)372 s_dev.runner = runner377 s_dev.runner = runner435 runner = _connected.runner[all …]
20 from twisterlib.runner import TwisterRunner182 runner = TwisterRunner(tplan.instances, tplan.testsuites, env)192 runner.duts = hwm.duts193 runner.run()213 runner.results.summary()215 report.summary(runner.results, options.disable_unrecognized_section_test, duration)242 runner.results.failed243 or runner.results.error
73 def get_runner_cls(runner): argument76 if cls.name() == runner:
18 runner = None variable96 runner.set_fw_ready(recv_file)140 while not runner.is_fw_ready():163 with subprocess.Popen(runner.get_script(), stdout=subprocess.PIPE,187 runner.cleanup()209 child_desc = " ".join(runner.script) + f", PID={proc.pid}"223 log.error("Try: sudo pkill -9 -f %s", runner.load_cmd)337 runner = device_runner(args) variable
26 runner: str = '' variable in DeviceConfig74 runner=config.option.runner,
414 - ``runners``: Try to guess the folder when using any of the 'runner'465 programs, you can specify which one to use using the ``--runner`` (or470 west flash --runner jlink472 You can override the default flash runner at build time by using the473 ``BOARD_FLASH_RUNNER`` CMake variable, and the debug runner with478 # Set the default runner to "jlink", overriding the board's485 See :ref:`west-runner` below for more information on the ``runner``500 flash (assuming your runner expects a HEX file), but keep other511 Each runner may support additional options related to flashing. For528 <runner-name>`` to print usage information for options supported by[all …]
9 # native_simulator runner build. Currently the following are used:11 # Extra compile options to be used during the build of the runner files14 # Extra link options to be passed during the *final* link of the runner18 # Extra sources to be built in the native simulator runner context21 # the runner is built with.23 # Extra libraries to link with the runner32 # information. This means we cannot directly pass it to the native_simulator runner build.84 # which are provided by the native simulator runner
4 # Used by the runner to configure OpenOCD
9 * @brief Extra linker command/script file for the native simulator runner
140 The board is configured to be flashed using west `STM32CubeProgrammer`_ runner,144 the ``--runner`` (or ``-r``) option:148 $ west flash --runner openocd149 $ west flash --runner jlink150 $ west flash --runner pyocd
9 # FIXME: openocd runner not yet available.
27 child, this then contains a map of commands as they would be provided to the flash runner e.g.29 are grouped by flash runner, and by qualifiers/boards). Commands have associated runners that31 runners, otherwise must contain each runner that it applies to using the runner-specific name.87 multiple images, the flash runner run once configuration will be applied.