zephyr/scripts/west_commands
Raffael Rostagno eca1112d5b tools: esp32: Update for esp32c2
Added argument to support custom baud rate on ESP monitor
for ESP32C2 and ESP8684.

Signed-off-by: Raffael Rostagno <raffael.rostagno@espressif.com>
2024-08-11 10:32:59 +02:00
..
completion west: Update fish completion for `boards` 2024-07-30 18:25:28 +01:00
fetchers
runners tools: esp32: Update for esp32c2 2024-08-11 10:32:59 +02:00
tests scripts: west_commands: runners: Add support for probe-rs 2024-08-01 12:39:28 +02:00
zspdx
README.txt
bindesc.py
blobs.py west: blobs: verify fetched blobs after downloading 2024-07-30 18:29:39 +01:00
boards.py west: add vendor to boards format 2024-07-30 18:25:28 +01:00
build.py scripts: west_commands: build: Fix empty testcase 2024-08-01 16:39:51 +02:00
build_helpers.py
completion.py
debug.py
export.py
flash.py
mypy.ini
robot.py
run_common.py
run_tests.py
shields.py
sign.py
simulate.py
spdx.py
twister_cmd.py
zcmake.py
zephyr_ext_common.py

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!