Lines Matching refs:runners

414          - ``runners``: Try to guess the folder when using any of the 'runner'
486 library used by West. The list of runners which support flashing can
489 available runners for your board.
506 supported by all runners.
512 example, some runners support an ``--erase`` flag, which mass-erases
515 To view all of the available options for the runners your board
527 prints a list of runners. You can use ``west flash -H -r
600 library used by West. The list of runners which support debugging can
603 available runners for your board.
621 supported by all runners.
627 example, some runners support flags which allow you to set the network
630 To view all of the available options for the runners your board
644 prints a list of runners. You can use ``west debug -H -r
686 Flash and debug runners
691 library at :zephyr_file:`scripts/west_commands/runners`. Each wrapper is
695 abstract class which represents runners. The set of available runners is
697 ``ZephyrBinaryRunner`` is available in the ``runners.core`` module; individual
698 runner implementations are in other submodules, such as ``runners.nrfjprog``,
699 ``runners.openocd``, etc.
711 easily extended by adding other runners.
728 To view all of the available options for the Robot runners your board
746 but can be easily extended by adding other runners.
773 To view all of the available options supported by the runners, as well
782 Out of tree runners
785 :ref:`Zephyr modules <modules>` can have external runners discovered by adding python
786 files in their :ref:`module.yml <modules-runners>`. Create an external runner class by
791 Support for custom out-of-tree runners makes the ``runners.core`` module part of
798 This section documents the ``runners.core`` module used by the
803 implementing additional runners. To get this support into upstream Zephyr, the
804 runner should be added into a new or existing ``runners`` module, and imported
805 from :file:`runners/__init__.py`.
810 coverage for the runners package and individual runner classes.
812 Please try to add tests when adding new runners. Note that if your
816 .. automodule:: runners.core