EspUp

Continuous Integration Security audit Open in Remote - Containers Matrix

rustup for esp-rs

espup is a tool for installing and maintaining the required toolchains for developing applications in Rust for Espressif SoC's.

Requirements

Before running or installing espup, make sure that rustup and the following dependencies are installed.

Windows

Linux

Installation

sh cargo install espup --git https://github.com/esp-rs/espup

It's also possible to directly download the pre-compiled release binaries or using cargo-binstall.

Quickstart

See Usage section for more details.

Install

Warning

The generated export file, by default export-esp, needs to be sourced in every terminal before building an application.

Uninstall

sh espup uninstall

Update

sh espup update

Usage

``` Usage: espup

Commands: install Installs esp-rs environment uninstall Uninstalls esp-rs environment update Updates Xtensa Rust toolchain help Print this message or the help of the given subcommand(s)

Options: -h, --help Print help information -V, --version Print version information ```

Install Subcommand

Note

Installation paths can be modified by setting the environment variables CARGO_HOME and RUSTUP_HOME before running the install command. Xtensa Rust toolchain will be installed under <rustup_home>/toolchains/esp.

``` Usage: espup install [OPTIONS]

Options: -d, --default-host Target triple of the host

-e, --espidf-version ESP-IDF version to install. If empty, no esp-idf is installed. Version format:

      - `commit:<hash>`: Uses the commit `<hash>` of the `esp-idf` repository.

      - `tag:<tag>`: Uses the tag `<tag>` of the `esp-idf` repository.

      - `branch:<branch>`: Uses the branch `<branch>` of the `esp-idf` repository.

      - `v<major>.<minor>` or `<major>.<minor>`: Uses the tag `v<major>.<minor>` of the `esp-idf` repository.

      - `<branch>`: Uses the branch `<branch>` of the `esp-idf` repository.

      When using this option, `ldproxy` crate will also be installed.

-f, --export-file Destination of the generated export file

      [default: export-esp.sh]

-c, --extra-crates Comma or space list of extra crates to install

      [default: cargo-espflash]

-l, --log-level Verbosity level of the logs

      [default: info]
      [possible values: debug, info, warn, error]

-n, --nightly-version Nightly Rust toolchain version

      [default: nightly]

-m, --profile-minimal Minifies the installation

-t, --targets Comma or space separated list of targets [esp32,esp32s2,esp32s3,esp32c3,all]

      [default: all]

-v, --toolchain-version Xtensa Rust toolchain version

      [default: 1.64.0.0]

-h, --help Print help information (use -h for a summary) ```

Uninstall Subcommand

``` Usage: espup uninstall [OPTIONS]

Options: -l, --log-level Verbosity level of the logs [default: info] [possible values: debug, info, warn, error] -h, --help Print help information ```

Update Subcommand

``` Usage: espup update [OPTIONS]

Options: -d, --default-host Target triple of the host -l, --log-level Verbosity level of the logs [default: info] [possible values: debug, info, warn, error] -v, --toolchain-version Xtensa Rust toolchain version [default: 1.64.0.0] -h, --help Print help information ```

Known Issues or Limitations

License

Licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.