Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Emilio Benavente 1142c40c5a scripts: west_commands: runners: Update GDB args 4 days ago
..
completion scripts: west_commands: Add powershell autocompletion (west -b) 2 months ago
fetchers west: blobs: fetch exit immediately on HTTP error 1 month ago
runners scripts: west_commands: runners: Update GDB args 4 days ago
sdk commands: add the 'sdk' command to manage SDK. 11 months ago
tests scripts: west_commands: runners: add ST-LINK GDB server 2 weeks ago
zspdx scripts: west: spdx: extract copyright info 2 weeks ago
README.txt
bindesc.py scripts: west_commands: bindesc: Fix linter issues 1 month ago
blobs.py scripts: blobs: add auto-accept option for license click-through 1 month ago
boards.py west: boards: add board revision support in format string 4 months ago
build.py scripts: west_commands: build: Fix linter issues 1 month ago
build_helpers.py scripts: west_commands: build_helpers: Fix linter issues 1 month ago
completion.py scripts: west_commands: completion: Fix linter issues 1 month ago
debug.py scripts: west_commands: debug: Fix linter issues 1 month ago
export.py scripts: west_commands: export: Sorted imports 1 month ago
flash.py scripts: west_commands: flash: Fix linter issues 1 month ago
gtags.py scripts: add "west gtags" command 4 months ago
mypy.ini
packages.py scripts: west_commands: add --ignore-venv-check option 6 months ago
patch.py scripts: west_commands: patch: Support Python 3.10 1 month ago
robot.py scripts: west_commands: robot: Fix linter issues 1 month ago
run_common.py west: fix for `west flash --context` with sysbuild. 2 months ago
run_tests.py
sdk.py scripts: west_commands: sdk: Display a download progress bar. 5 months ago
shields.py scripts: west: commands: make use of shield.yml in west shields command 2 months ago
sign.py soc: silabs: siwx91x: Clean output names 2 weeks ago
simulate.py scripts: west_commands: simulate: Fix linter issues 1 month ago
spdx.py west: spdx: allow to generate for different SPDX versions 4 weeks ago
twister_cmd.py scripts: west_commands: twister_cmd: Remove deprecated west.log 8 months ago
zcmake.py scripts: support number of jobs and verbosity in west build. 4 months ago
zephyr_ext_common.py scripts: west_commands: zephyr_ext_common: Remove deprecated west.log 8 months ago

README.txt

This directory contains implementations for west commands which are
tightly coupled to the zephyr tree. This includes the build, flash,
and debug commands.

Before adding more here, consider whether you might want to put new
extensions in upstream west. For example, any commands which operate
on the multi-repo need to be in upstream west, not here. Try to limit
what goes in here to Zephyr-specific features.

When extending this code, please keep the unit tests (in tests/) up to
date. The mypy static type checker is also run on the runners package.

To run these tests locally on Windows, run:

py -3 run_tests.py

On macOS and Linux:

./run_tests.py

Note that these tests are run as part of Zephyr's CI when submitting
an upstream pull request, and pull requests which break the tests
cannot be merged.

Thanks!