/Zephyr-Core-3.7.0/ |
D | west.yml | 3 # The per-installation west configuration file, .west/config, sets the 4 # path to the project containing this file in the [manifest] section's 5 # "path" variable. 22 - name: upstream 23 url-base: https://github.com/zephyrproject-rtos 24 - name: babblesim 25 url-base: https://github.com/BabbleSim 27 group-filter: [-babblesim, -optional] 32 - name: acpica 34 path: modules/lib/acpica [all …]
|
D | Kconfig.zephyr | 3 # Copyright (c) 2014-2015 Wind River Systems, Inc. 6 # SPDX-License-Identifier: Apache-2.0 92 bool "Link application into /chosen/zephyr,code-partition from devicetree" 95 selected by the zephyr,code-partition property in /chosen in devicetree. 100 DT_CHOSEN_Z_CODE_PARTITION := zephyr,code-partition 103 # Only user-configurable when USE_DT_CODE_PARTITION is disabled 116 # Only user-configurable when USE_DT_CODE_PARTITION is disabled 121 If non-zero, this option specifies the size, in bytes, of the flash 136 If the application is built for chain-loading by a bootloader this 149 If non-zero, this option reduces the maximum size that the Zephyr image is allowed to [all …]
|
/Zephyr-Core-3.7.0/.github/workflows/ |
D | clang.yaml | 6 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }} 7 cancel-in-progress: true 10 clang-build: 11 if: github.repository_owner == 'zephyrproject-rtos' 12 runs-on: 13 group: zephyr-runner-v2-linux-x64-4xlarge 15 image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.26.13.20240601 16 options: '--entrypoint /bin/bash' 18 fail-fast: false 22 CCACHE_DIR: /node-cache/ccache-zephyr [all …]
|
D | twister.yaml | 6 - main 7 - v*-branch 8 - collab-* 11 - main 12 - v*-branch 13 - collab-* 16 - cron: '0 3 * * 0' 19 group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }} 20 cancel-in-progress: true 23 twister-build-prep: [all …]
|
D | bsim-tests.yaml | 6 - ".github/workflows/bsim-tests.yaml" 7 - ".github/workflows/bsim-tests-publish.yaml" 8 - "west.yml" 9 - "subsys/bluetooth/**" 10 - "tests/bsim/**" 11 - "tests/bluetooth/common/testlib/**" 12 - "samples/bluetooth/**" 13 - "boards/posix/**" 14 - "soc/posix/**" 15 - "arch/posix/**" [all …]
|
D | codecov.yaml | 5 - 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.26.13.20240601 18 options: '--entrypoint /bin/bash' 20 fail-fast: false 24 - platform: 'mps2/an385' [all …]
|
D | footprint-tracking.yml | 6 - 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 …]
|
/Zephyr-Core-3.7.0/doc/develop/west/ |
D | manifest.rst | 1 .. _west-manifests: 8 ``west.manifest`` module, see :ref:`west-apis-manifest`. For a more general 9 introduction and command overview, see :ref:`west-basics`. 16 .. _west-mr-model: 25 .. figure:: west-mr-model.png 27 :alt: West multi-repo history 28 :figclass: align-center 30 West multi-repo history 48 - Projects can be added (like ``P1`` between manifest repository 52 - Project and manifest repository histories don't have to move [all …]
|
D | workspaces.rst | 1 .. _west-workspaces: 7 :ref:`west-basics` in more detail. 9 .. _west-manifest-rev: 11 The ``manifest-rev`` branch 14 West creates and controls a Git branch named ``manifest-rev`` in each 16 specified for the project at the time :ref:`west-update` was last run. 17 Other workspace management commands may use ``manifest-rev`` as a reference 19 purposes, the ``manifest-rev`` branch allows the manifest file to use SHAs 22 Although ``manifest-rev`` is a normal Git branch, west will recreate and/or 27 rebase it on top of a new ``manifest-rev``, or merge ``manifest-rev`` into [all …]
|
D | basics.rst | 1 .. _west-basics: 9 West's built-in commands allow you to work with :term:`projects <west project>` 13 :term:`west workspace`, and clones the :term:`manifest repo <west manifest 24 .. code-block:: none 28 │ └── config # per-workspace local configuration file 31 ├── zephyr/ # .git/ repo 39 ├── net-tools/ # .git/ project 42 .. _west-workspace: 48 Additional details are in :ref:`west-workspaces`. 53 -- it could be anything, like ``z``, ``my-zephyr-workspace``, etc.) [all …]
|
D | release-notes.rst | 1 .. _west-release-notes: 11 - New ``west grep`` command for running a "grep tool" in your west workspace's 18 .. code-block:: console 25 .. list-table:: 27 * - ``git grep --untracked`` 28 - ``west grep --untracked foo`` 29 * - ``ripgrep`` 30 - ``west grep --tool ripgrep foo`` 31 * - ``grep --recursive`` 32 - ``west grep --tool grep foo`` [all …]
|
/Zephyr-Core-3.7.0/submanifests/ |
D | optional.yaml | 3 - name: upstream 4 url-base: https://github.com/zephyrproject-rtos 6 - name: canopennode 8 path: modules/lib/canopennode 11 - optional 12 - name: chre 14 path: modules/lib/chre 17 - optional 18 - name: lz4 20 path: modules/lib/lz4 [all …]
|
/Zephyr-Core-3.7.0/scripts/ |
D | set_assignees.py | 4 # SPDX-License-Identifier: Apache-2.0 17 TOP_DIR = os.path.join(os.path.dirname(__file__)) 18 sys.path.insert(0, os.path.join(TOP_DIR, "scripts")) 31 parser.add_argument("-M", "--maintainer-file", required=False, default="MAINTAINERS.yml", 35 group.add_argument("-P", "--pull_request", required=False, default=None, type=int, 36 help="Operate on one pull-request only.") 37 group.add_argument("-I", "--issue", required=False, default=None, type=int, 39 group.add_argument("-s", "--since", required=False, 40 help="Process pull-requests since date.") 41 group.add_argument("-m", "--modules", action="store_true", [all …]
|
D | zephyr_module.py | 5 # 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 28 from pathlib import Path, PurePath 57 cmake-ext: 61 kconfig-ext: 65 sysbuild-cmake: 68 sysbuild-kconfig: 71 sysbuild-cmake-ext: [all …]
|
/Zephyr-Core-3.7.0/scripts/footprint/ |
D | upload_data.py | 4 # SPDX-License-Identifier: Apache-2.0 14 from git import Repo 56 parser.add_argument("-d", "--data", help="Data Directory") 57 …parser.add_argument("-y", "--dryrun", action="store_true", help="Dry run, do not upload to databas… 58 parser.add_argument("-z", "--zephyr-base", help="Zephyr tree") 59 parser.add_argument("-f", "--file", help="JSON file with footprint data") 99 repo = Repo(zephyr_base) 111 json_file = os.path.basename(file) 124 gitcommit = repo.commit(f'{commit}') 127 cidx = commit.find('-g') + 2 [all …]
|
/Zephyr-Core-3.7.0/boards/quicklogic/qomu/doc/ |
D | index.rst | 9 The Qomu board is a platform with an on-board QuickLogic EOS S3 Sensor Processing Platform. 12 .. figure:: img/qomu-board.png 21 - QuickLogic EOS S3 MCU Platform 22 - 16 Mbit of on-board flash memory 23 - Touchpads (4) 24 - RGB LED 25 - Powered from USB 43 .. zephyr-app-commands:: 44 :zephyr-app: samples/boards/qomu 50 #. While the blue LED is blinking (for 5 seconds), touch the touch-pads with your finger. [all …]
|
/Zephyr-Core-3.7.0/scripts/ci/ |
D | test_plan.py | 2 # SPDX-License-Identifier: Apache-2.0 16 from pathlib import Path 17 from git import Repo 29 # however, pylint complains that it doesn't recognized them when used (used-before-assignment). 30 zephyr_base = Path(os.environ['ZEPHYR_BASE']) 32 repo_to_scan = Repo(zephyr_base) 37 sys.path.append(os.path.join(zephyr_base, 'scripts')) 67 # The glob regexes must anchor to the beginning of the path, since we 68 # return search(). (?:) is a non-capturing group. 92 def _contains(self, path): argument [all …]
|
/Zephyr-Core-3.7.0/doc/connectivity/bluetooth/autopts/ |
D | autopts-win10.rst | 1 .. _autopts-win10: 20 Start -> Settings -> Update & Security -> Windows Update 29 installation directory to the PATH and disable the path length limitation. 44 Download and install `Git <https://git-scm.com/downloads>`_. 79 https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Command-Line-Tools/Download 112 .. code-block:: 116 Build the auto-pts tester app 118 .. code-block:: 120 west build -p auto -b nrf52840dk/nrf52840 zephyr/tests/bluetooth/tester/ 124 .. code-block:: [all …]
|
/Zephyr-Core-3.7.0/doc/develop/ |
D | beyond-GSG.rst | 1 .. _beyond-gsg: 6 The :ref:`getting_started` gives a straight-forward path to set up 11 .. _python-pip: 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 30 and the system package manager, and is the default on Debian-based 33 - On macOS, `Homebrew disables -\\-user`_. [all …]
|
/Zephyr-Core-3.7.0/doc/develop/application/ |
D | index.rst | 10 …- your **application directory**, :file:`<app>`, is something like :file:`<home>/zephyrproject/app` 11 - its **build directory** is :file:`<app>/build` 19 <important-build-vars>` is set appropriately, though.) 26 The build system is application-centric, and requires Zephyr-based applications 37 application. This directory contains all application-specific files, such as 38 application-specific configuration files and source code. 42 .. code-block:: none 57 such as board-specific configuration files, the ability to run and 61 application-specific changes which should be applied to the base devicetree 70 * **prj.conf**: This is a Kconfig fragment that specifies application-specific [all …]
|
/Zephyr-Core-3.7.0/doc/_extensions/zephyr/ |
D | gh_utils.py | 8 SPDX-License-Identifier: Apache-2.0 29 - ``gh_link_version``: GitHub version to use in the URL (e.g. "main") 30 - ``gh_link_base_url``: Base URL used as a prefix for generated URLs. 31 - ``gh_link_prefixes``: Mapping of pages (regex) <> GitHub prefix. 32 - ``gh_link_exclude``: List of pages (regex) that will not report a URL. Useful 33 for, e.g., auto-generated pages not in Git. 42 from pathlib import Path 50 ZEPHYR_BASE : Final[str] = Path(__file__).parents[3] 52 sys.path.insert(0, str(SCRIPTS)) 62 def get_page_prefix(app: Sphinx, pagename: str) -> str: [all …]
|
/Zephyr-Core-3.7.0/doc/build/ |
D | zephyr_cmake_package.rst | 6 The Zephyr `CMake package`_ is a convenient way to create a Zephyr-based application. 9 The :ref:`zephyr-app-types` section introduces the application types 13 the application, whether it is a :ref:`Zephyr repository application <zephyr-repo-app>`, 14 a :ref:`Zephyr workspace application <zephyr-workspace-app>`, or a 15 :ref:`Zephyr freestanding application <zephyr-freestanding-app>`. 17 When developing a Zephyr-based application, then a developer simply needs to write 27 .. group-tab:: Ubuntu 33 .. group-tab:: macOS 39 .. group-tab:: Windows 56 to export Zephyr using ``west zephyr-export``. [all …]
|
/Zephyr-Core-3.7.0/doc/contribute/documentation/ |
D | generation.rst | 11 .. _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-Core-3.7.0/scripts/west_commands/completion/ |
D | west-completion.fish | 20 set -l tokens (commandline -opc) 41 set -l tokens (commandline -opc) 42 set -l argc (count $argv) 43 set -l max $argv[1] 44 set -l counter 0 46 if test $argc -eq 1 47 if test (math (count $tokens) - 2) -ge $max 60 if $counter -ge $max 77 set -l tokens (commandline -opc) 80 if string match -qr -- "$token*" "$tokens[-1]" [all …]
|
/Zephyr-Core-3.7.0/doc/contribute/ |
D | guidelines.rst | 6 As an open-source project, we welcome and encourage the community to submit 24 https://github.com/zephyrproject-rtos/zephyr/blob/main/LICENSE 26 .. _GitHub repo: https://github.com/zephyrproject-rtos/zephyr 29 the project's `GitHub repo`_) to strike a balance between open 38 https://www.zephyrproject.org/faqs/#1571346989065-9216c551-f523 41 https://www.whitesourcesoftware.com/whitesource-blog/top-10-apache-license-questions-answered/ 64 See :ref:`external-contributions` for more information about 84 https://www.linuxfoundation.org/blog/copyright-notices-in-open-source-software-projects/ 97 later in this document), the developer simply adds a ``Signed-off-by`` 104 .. code-block:: none [all …]
|