Home
last modified time | relevance | path

Searched +full:get +full:- +full:pip (Results 1 – 25 of 33) sorted by relevance

12

/Zephyr-latest/scripts/west_commands/
Dpackages.py3 # SPDX-License-Identifier: Apache-2.0
20 def in_venv() -> bool:
46 see 'west packages <manager> --help' for details.
52 "-m",
53 "--module",
73 "pip",
74 help="manage pip packages",
78 Manage pip packages:
80 Run 'west packages pip' to print all requirement files needed by
89 "--install",
[all …]
Dpatch.py3 # SPDX-License-Identifier: Apache-2.0
30 WEST_PATCH_SCHEMA_PATH = Path(__file__).parents[1] / "schemas" / "patch-schema.yml"
57 See "west patch apply --help" for details.
62 See "west patch clean --help" for details.
67 See "west patch list --help" for details.
71 Run "west patch gh-fetch" to fetch patches from Github.
72 See "west patch gh-fetch --help" for details.
76 The patches.yml syntax is described in "scripts/schemas/patch-schema.yml".
79 - path: zephyr/kernel-pipe-fix-not-k-no-wait-and-ge-min-xfer-bytes.patch
84 date: 2020-04-20
[all …]
/Zephyr-latest/.github/workflows/
Dcoding_guidelines.yml7 runs-on: ubuntu-22.04
10 - name: Checkout the code
14 fetch-depth: 0
16 - name: cache-pip
19 path: ~/.cache/pip
20 key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/coding_guidelines.yml') }}
22 - name: Install python dependencies
24 pip install unidiff
25 pip install sh
27 - name: Install Packages
[all …]
Ddevicetree_checks.yml3 # SPDX-License-Identifier: Apache-2.0
10 - main
11 - v*-branch
13 - 'scripts/dts/**'
14 - '.github/workflows/devicetree_checks.yml'
17 - main
18 - v*-branch
20 - 'scripts/dts/**'
21 - '.github/workflows/devicetree_checks.yml'
24 devicetree-checks:
[all …]
Dwest_cmds.yml2 # SPDX-License-Identifier: Apache-2.0
9 - main
10 - v*-branch
11 - collab-*
13 - 'scripts/west-commands.yml'
14 - 'scripts/west_commands/**'
15 - '.github/workflows/west_cmds.yml'
18 - main
19 - v*-branch
20 - collab-*
[all …]
Ddoc-build.yml2 # SPDX-License-Identifier: Apache-2.0
8 - cron: '0 */3 * * *'
11 - v*
18 # so we fetch that through pip.
24 doc-build-html:
27 github.repository_owner == 'zephyrproject-rtos'
28 runs-on: ubuntu-24.04
29 timeout-minutes: 90
31 group: doc-build-html-${{ github.ref }}
32 cancel-in-progress: true
[all …]
Dfootprint-tracking.yml6 - cron: '50 1/12 * * *'
9 - 'VERSION'
10 - '.github/workflows/footprint-tracking.yml'
12 - main
13 - v*-branch
15 # only publish v* tags, do not care about zephyr-v* which point to the
17 - 'v*'
20 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
21 cancel-in-progress: true
24 footprint-tracking:
[all …]
Dcodecov.yaml5 - cron: '25 06,18 * * *'
8 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
9 cancel-in-progress: true
13 if: github.repository_owner == 'zephyrproject-rtos'
14 runs-on:
15 group: zephyr-runner-v2-linux-x64-4xlarge
17 image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.27.4.20241026
18 options: '--entrypoint /bin/bash'
20 fail-fast: false
24 - platform: 'mps2/an385'
[all …]
Dtwister-publish.yaml7 - main
9 - completed
12 upload-to-elasticsearch:
14 github.repository == 'zephyrproject-rtos/zephyr' &&
19 runs-on: ubuntu-22.04
22 - name: Checkout
25 fetch-depth: 0
26 persist-credentials: false
28 - name: Download Artifacts
29 id: download-artifacts
[all …]
/Zephyr-latest/doc/develop/
Dbeyond-GSG.rst1 .. _beyond-gsg:
6 The :ref:`getting_started` gives a straight-forward path to set up
11 .. _python-pip:
13 Python and pip
16 Python 3 and its package manager, pip\ [#pip]_, are used extensively by Zephyr
22 ``--user`` flag to the ``pip3`` command when installing new packages. This is
25 information about pip\ [#pip]_, including `information on -\\-user`_.
27 - On Linux, make sure ``~/.local/bin`` is at the front of your :envvar:`PATH`
28 :ref:`environment variable <env_vars>`, or programs installed with ``--user``
29 won't be found. Installing with ``--user`` avoids conflicts between pip
[all …]
/Zephyr-latest/doc/develop/getting_started/
Dinstallation_linux.rst21 ``http_proxy`` and ``https_proxy`` to get their proxy settings, some
32 .. group-tab:: Ubuntu
34 .. code-block:: console
36 sudo apt-get update
37 sudo apt-get upgrade
39 .. group-tab:: Fedora
41 .. code-block:: console
45 .. group-tab:: Clear Linux
47 .. code-block:: console
51 .. group-tab:: Arch Linux
[all …]
Dindex.rst8 - Set up a command-line Zephyr development environment on Ubuntu, macOS, or
11 - Get the source code
12 - Build, flash, and run a sample application
23 .. group-tab:: Ubuntu
28 .. code-block:: bash
33 .. group-tab:: macOS
39 <https://support.apple.com/en-us/HT201541>`_.
41 .. group-tab:: Windows
46 .. _install-required-tools:
55 .. list-table::
[all …]
/Zephyr-latest/tests/kernel/timer/timer_behavior/
DREADME10 --------------------------------------------------------------------------------
16 GPIO pin on every cycle - first cycle will be a rising edge. This test expects
23 "test-kernel-timer-behavior-external", with property "timeout-gpios" being the
28 In order to get data from the external tool, the test expects a Python module,
31 run(seconds: float, options: str) -> {}, int
60 "tool-options", a string with options passed to the Python module helper.
83 the saleae_logic2 module ones are listed at pytest/requirements-saleae.txt.
84 One can install them with pip (possibly in some virtual environment):
86 pip install -r pytest/requirements-saleae.txt
/Zephyr-latest/doc/develop/west/
Dtroubleshooting.rst1 .. _west-troubleshooting:
14 .. code-block:: shell
16 west -v update
21 .. code-block:: none
26 --- your_project: fetching, need revision SOME_SHA
27 …west.manifest: running 'git fetch ... https://github.com/your-username/your_project ...' in /some/…
37 ``curl -v FETCH_URL`` (for HTTPS URLs) or ``ssh -v FETCH_URL`` (for SSH URLs)
40 If you can get the ``git fetch`` command to run successfully without prompting
48 environment variable does not contain the directory where pip installed
51 First, make sure you've installed west; see :ref:`west-install`. Then try
[all …]
/Zephyr-latest/samples/net/sockets/coap_download/
DREADME.rst1 .. zephyr:code-sample:: coap-download
3 :relevant-api: coap
5 Use the CoAP client API to download data via a GET request
10 This sample demonstrates the use of the CoAP client API to make GET requests to
19 - :ref:`networking_with_host`, :ref:`networking_with_native_sim`
20 - or, a board with hardware networking (tested on nucleo_h753zi)
21 - Network connection between the board and host running a CoAP server
27 .. zephyr-app-commands::
28 :zephyr-app: samples/net/sockets/coap_download
43 .. code-block:: bash
[all …]
/Zephyr-latest/doc/contribute/documentation/
Dgeneration.rst11 .. _documentation-overview:
18 using Sphinx to create a formatted stand-alone website. Developers can
36 * Doxygen-generated material used to create all API-specific documents
39 * Script-generated material for kernel configuration options based on Kconfig
51 rtd [shape="rectangle" label="read-the-docs\ntheme"]
56 images -> sphinx
57 rst -> sphinx
58 conf -> sphinx
59 header -> doxygen
60 doxygen -> xml
[all …]
/Zephyr-latest/cmake/modules/
Dzephyr_default.cmake1 # SPDX-License-Identifier: Apache-2.0
40 # Find and execute application-specific build configuration
53 # Test and error-out if we are affected by the PyPI CMake 3.22.1 / 3.22.2 bug
55 # It seems only pip-installed builds are affected so we test to see if we are affected
56 cmake_path(GET ZEPHYR_BASE PARENT_PATH test_cmake_path)
60 "https://gitlab.kitware.com/cmake/cmake/-/issues/23187\n"
61 "https://github.com/scikit-build/cmake-python-distributions/issues/221\n"
104 # Include board specific device-tree flags before parsing.
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dhardwaremap.py5 # SPDX-License-Identifier: Apache-2.0
30 print("Install tabulate python module with pip to use --device-testing option.")
133 schema_path = os.path.join(ZEPHYR_BASE, "scripts", "schemas", "twister", "hwmap-schema.yaml")
155 'DAPLink CMSIS-DAP',
156 'MBED CMSIS-DAP'
159 'J-Link',
160 'J-Link OB'
163 'STM32 STLink', '^XDS110.*', 'STLINK-V3'
166 'TTL232R-3V3',
268 pre_script = dut.get('pre_script')
[all …]
Denvironment.py4 # Copyright (c) 2018-2025 Intel Corporation
8 # SPDX-License-Identifier: Apache-2.0
45 def _get_installed_packages() -> Generator[str, None, None]:
63 PYTEST_PLUGIN_INSTALLED = 'pytest-twister-harness' in installed_packages
71 def add_parse_arguments(parser = None) -> argparse.ArgumentParser:
82 $ ./scripts/twister -v \\
83 --testsuite-root tests/ztest/base \\
84 --testsuite-root tests/kernel \\
85 --test tests/ztest/base/testing.ztest.verbose_0 \\
86 --test tests/kernel/fifo/fifo_api/kernel.fifo
[all …]
Dharness.py1 # SPDX-License-Identifier: Apache-2.0
74 def trace(self) -> bool:
78 def status(self) -> TwisterStatus:
82 def status(self, value : TwisterStatus) -> None:
99 self.type = config.get('type', None)
100 self.regex = config.get('regex', [])
101 self.ordered = config.get('ordered', True)
102 self.record = config.get('record', {})
104 self.record_patterns = [re.compile(p) for p in self.record.get("regex", [])]
105 self.record_merge = self.record.get("merge", False)
[all …]
/Zephyr-latest/scripts/pylib/twister/
Dexpr_parser.py5 # SPDX-License-Identifier: Apache-2.0
20 "package manager or the 'pip' tool.")
51 r"0x[0-9a-fA-F]+"
63 t.value = t.value[1:-1]
91 r"[A-Za-z_][0-9A-Za-z_]*"
92 t.type = reserved.get(t.value, "SYMBOL")
241 # a given compatible. For matching things like gpio-leds child
257 node = edt.label2node.get(label)
272 node = edt.label2node.get(label)
278 node = edt.label2node.get(label)
[all …]
/Zephyr-latest/boards/enjoydigital/litex_vexriscv/doc/
Dindex.rst7 <https://github.com/litex-hub/zephyr-on-litex-vexriscv>`_
8 or `LiteX SoC Builder <https://github.com/enjoy-digital/litex>`_
11 vendor-specific and open-source tools, including the
16 `Digilent Arty A7-35T or A7-100T Development Boards
17 <https://store.digilentinc.com/arty-a7-artix-7-fpga-development-board-for-makers-and-hobbyists>`_
18 or `SDI-MIPI Video Converter <https://github.com/antmicro/sdi-mipi-video-converter>`_.
21 `Migen <https://m-labs.hk/gateware/migen/>`_/`MiSoC SoC builder <https://github.com/m-labs/misoc>`_
22 and provides ready-made system components such as buses, streams, interconnects,
27 `LiteX's website <https://github.com/enjoy-digital/litex>`_.
29 VexRiscv is a 32-bit implementation of the RISC-V CPU architecture
[all …]
/Zephyr-latest/samples/modules/tflite-micro/magic_wand/train/
DREADME.md12 …roject was inspired by the [Gesture Recognition Magic Wand](https://github.com/jewang/gesture-demo)
31 notebook demonstrates how to train the model. It's the easiest way to get
34 <table class="tfo-notebook-buttons" align="left">
39 …agic_wand_model.ipynb"><img src="https://www.tensorflow.org/images/GitHub-Mark-32px.png" />View so…
50 pip install numpy==1.16.2 tensorflow==2.0.0-beta1
55 - Random data split, which mixes different people's data together and randomly
57 - Person data split, which splits the data by person
69 $ python train.py --model CNN --person false
82 $ python train.py --model CNN --person true
87 In the `--model` argument, you can can provide `CNN` or `LSTM`. The CNN
[all …]
/Zephyr-latest/scripts/
Dzephyr_module.py5 # SPDX-License-Identifier: Apache-2.0
11 Include file is generated for Kconfig using --kconfig-out.
12 A <name>:<path> text file is generated for use with CMake using --cmake-out.
14 Using --twister-out <filename> an argument file for twister script will
57 cmake-ext:
61 kconfig-ext:
65 sysbuild-cmake:
68 sysbuild-kconfig:
71 sysbuild-cmake-ext:
75 sysbuild-kconfig-ext:
[all …]
/Zephyr-latest/doc/connectivity/bluetooth/autopts/
Dautopts-linux.rst1 .. _autopts-linux:
14 - Testing Zephyr Host Stack on QEMU
16 - Testing Zephyr Host Stack on :ref:`native_sim <native_sim>`
18 - Testing Zephyr combined (controller + host) build on Real hardware (such as nRF52)
33 https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Command-Line-Tools/Download.
42 - JLink_Linux_V688a_x86_64.deb
44 - nRF-Command-Line-Tools_10_12_1_Linux-amd64.deb
65 Start -> Settings -> Update & Security -> Windows Update
72 configured, and will not get blocked by the Windows Firewall.
75 ----------
[all …]

12