#embassy #cargo #nrf #stm32 #formatting #running #up

no-std app cargo-embassy

Get up and running with Embassy in seconds

2 unstable releases

0.2.0 Feb 16, 2024
0.1.0 Feb 13, 2024

#503 in Embedded development

34 downloads per month

Custom license

36KB
547 lines

cargo-embassy

Get up and running with Embassy in seconds.

Features

  • Supports STM32* and NRF*
  • Generates project structure
    • Toolchain
    • Probing
    • Dependencies
    • Profiles
    • Formatting

TODO

Refer to the tracking issues for proposed changes.

Installation

Simply install this repo as a cargo utility:

cargo install --git https://github.com/adinack/cargo-embassy

Usage

This utility will also create the cargo project, so wherever you would normally run cargo new ..., run:

cargo embassy init {project_name} args...

You can see how the init command works with:

cargo embassy init --help

To run the project, use:

cargo run

...or to deploy the project without RTT:

cargo embed

defmt can be removed for production deployments by disabling the "debug" feature with --no-default-features.

Examples

Create a new Embassy project for the STM32G031K8:

cargo embassy init my_project --chip stm32g031k8

Create a new Embassy project for the NRF52840:

cargo embassy init my_project --chip nrf52840

Create a new Embassy project for the NRF52832_xxAA and Softdevice S132

cargo embassy init my_project --chip nrf52832_xxAA --softdevice s132

Dependencies

~24–37MB
~486K SLoC