Modern embedded framework, using Rust and async.
Find a file
Ralf c90968bb70 stm32/rcc: Modify only relevant CFGR bits and keep the settings previously done.
PLL settings remained intact because these bits are not writable when PLL is enabled,
but prescaler settings were overwritten by selecting PLL as sysclk (CFGR.SW[1:0]).
2022-05-12 09:09:39 +02:00
.github Update cargo-batch. 2022-04-08 00:35:00 +02:00
.vscode embassy, embassy-nrf: add nightly Cargo feature to gate nightly-only features. 2022-02-12 01:16:31 +01:00
docs Update list of families with bootloader support 2022-05-06 21:57:15 +02:00
embassy Merge #752 2022-05-06 23:54:07 +00:00
embassy-boot Add F7 flash and bootloader support 2022-05-06 21:57:15 +02:00
embassy-hal-common Remove embassy_hal_common::usb. 2022-05-04 01:41:37 +02:00
embassy-lora Update to released lorawan crates 2022-04-26 19:06:15 +02:00
embassy-macros Merge #742 2022-04-29 14:29:26 +00:00
embassy-net Replace embassy::io with embedded_io. 2022-05-07 01:45:54 +02:00
embassy-nrf Replace embassy::io with embedded_io. 2022-05-07 01:45:54 +02:00
embassy-rp squash! Implement Output::is_set_low for embassy-rp 2022-05-11 18:33:13 +02:00
embassy-stm32 stm32/rcc: Modify only relevant CFGR bits and keep the settings previously done. 2022-05-12 09:09:39 +02:00
embassy-traits Switch to crates.io embedded-hal, embedded-hal-async. 2022-04-22 19:58:24 +02:00
embassy-usb usb: add support for custom string descriptors. 2022-04-23 04:40:57 +02:00
embassy-usb-hid usb: set the interface handler in InterfaceBuilder. 2022-04-23 01:29:19 +02:00
embassy-usb-ncm Add embassy-usb-ncm. Implements USBB CDC NCM (Ethernet over USB) 2022-04-24 22:44:52 +02:00
embassy-usb-serial usb: set the interface handler in InterfaceBuilder. 2022-04-23 01:29:19 +02:00
examples Merge #752 2022-05-06 23:54:07 +00:00
stm32-data@b2d7a9f5de Add support for F3 flash 2022-05-06 21:57:15 +02:00
stm32-gen-features Add stm32wlexx support 2022-04-08 03:43:58 +02:00
stm32-metapac Add bootloader to CI 2022-04-27 15:17:18 +02:00
stm32-metapac-gen Add bootloader to CI 2022-04-27 15:17:18 +02:00
tests/stm32 stm32: add stm32u5 GPDMA, SPIv4 support, add HIL tests. 2022-04-27 01:16:14 +02:00
xtask Update lots of deps 2021-09-11 01:35:23 +02:00
.gitignore ci: add build with stable. 2022-02-12 01:16:31 +01:00
.gitmodules Add stm32-metapac crate, with codegen in rust 2021-05-31 02:40:58 +02:00
ci.sh stm32: Fix stm32f107 build. 2022-05-08 21:37:37 +02:00
ci_stable.sh Add STM32F217ZG to CI 2022-03-27 19:56:44 +03:00
LICENSE-APACHE First commit 2020-09-22 18:03:43 +02:00
LICENSE-MIT First commit 2020-09-22 18:03:43 +02:00
README.md More README fix. 2022-04-19 01:35:13 +02:00
rust-toolchain.toml Update Rust nightly. 2022-04-24 04:24:08 +02:00

Embassy

Embassy is the next-generation framework for embedded applications. Write safe, correct and energy-efficient embedded code faster, using the Rust programming language, its async facilities, and the Embassy libraries.

Documentation - API reference - Website - Chat

Rust + async ❤️ embedded

The Rust programming language is blazingly fast and memory-efficient, with no runtime, garbage collector or OS. It catches a wide variety of bugs at compile time, thanks to its full memory- and thread-safety, and expressive type system.

Rust's async/await allows for unprecedently easy and efficient multitasking in embedded systems. Tasks get transformed at compile time into state machines that get run cooperatively. It requires no dynamic memory allocation, and runs on a single stack, so no per-task stack size tuning is required. It obsoletes the need for a traditional RTOS with kernel context switching, and is faster and smaller than one!

Batteries included

  • Hardware Abstraction Layers - HALs implement safe, idiomatic Rust APIs to use the hardware capabilities, so raw register manipulation is not needed. The Embassy project maintains HALs for select hardware, but you can still use HALs from other projects with Embassy.

    • embassy-stm32, for all STM32 microcontroller families.
    • embassy-nrf, for the Nordic Semiconductor nRF52, nRF53, nRF91 series.
  • Time that Just Works - No more messing with hardware timers. embassy::time provides Instant, Duration and Timer types that are globally available and never overflow.

  • Real-time ready - Tasks on the same async executor run cooperatively, but you can create multiple executors with different priorities, so that higher priority tasks preempt lower priority ones. See the example.

  • Low-power ready - Easily build devices with years of battery life. The async executor automatically puts the core to sleep when there's no work to do. Tasks are woken by interrupts, there is no busy-loop polling while waiting.

  • Networking - The embassy-net network stack implements extensive networking functionality, including Ethernet, IP, TCP, UDP, ICMP and DHCP. Async drastically simplifies managing timeouts and serving multiple connections concurrently.

  • Bluetooth - The nrf-softdevice crate provides Bluetooth Low Energy 4.x and 5.x support for nRF52 microcontrollers.

  • LoRa - embassy-lora supports LoRa networking on STM32WL wireless microcontrollers and Semtech SX127x transceivers.

  • USB - embassy-usb implements a device-side USB stack. Implementations for common classes such as USB serial (CDC ACM) and USB HID are available, and a rich builder API allows building your own.

  • Bootloader and DFU - embassy-boot is a lightweight bootloader supporting firmware application upgrades in a power-fail-safe way, with trial boots and rollbacks.

Sneak peek

use defmt::info;
use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_nrf::gpio::{AnyPin, Input, Level, Output, OutputDrive, Pin, Pull};
use embassy_nrf::Peripherals;

// Declare async tasks
#[embassy::task]
async fn blink(pin: AnyPin) {
    let mut led = Output::new(pin, Level::Low, OutputDrive::Standard);

    loop {
        // Timekeeping is globally available, no need to mess with hardware timers.
        led.set_high();
        Timer::after(Duration::from_millis(150)).await;
        led.set_low();
        Timer::after(Duration::from_millis(150)).await;
    }
}

// Main is itself an async task as well.
#[embassy::main]
async fn main(spawner: Spawner, p: Peripherals) {
    // Spawned tasks run in the background, concurrently.
    spawner.spawn(blink(p.P0_13.degrade())).unwrap();

    let mut button = Input::new(p.P0_11, Pull::Up);
    loop {
        // Asynchronously wait for GPIO events, allowing other tasks
        // to run, or the core to sleep.
        button.wait_for_low().await;
        info!("Button pressed!");
        button.wait_for_high().await;
        info!("Button released!");
    }
}

Examples

Examples are found in the examples/ folder seperated by the chip manufacturer they are designed to run on. For example:

  • examples/nrf run on the nrf52840-dk board (PCA10056) but should be easily adaptable to other nRF52 chips and boards.
  • examples/stm32xx for the various STM32 families.
  • examples/rp are for the RP2040 chip.
  • examples/std are designed to run locally on your PC.

Running examples

  • Setup git submodules (needed for STM32 examples)
git submodule init
git submodule update
  • Install probe-run with defmt support.
cargo install probe-run
  • Change directory to the sample's base directory. For example:
cd examples/nrf
  • Run the example

For example:

cargo run --bin blinky

Developing Embassy with Rust Analyzer based editors

The Rust Analyzer is used by Visual Studio Code and others. Given the multiple targets that Embassy serves, there is no Cargo workspace file. Instead, the Rust Analyzer must be told of the target project to work with. In the case of Visual Studio Code, please refer to the .vscode/settings.json file's rust-analyzer.linkedProjectssetting.

Minimum supported Rust version (MSRV)

Embassy is guaranteed to compile on the latest stable Rust version at the time of release. It might compile with older versions but that may change in any new patch release.

Several features require nightly:

  • The #[embassy::main] and #[embassy::task] attribute macros.
  • Async traits

These are enabled by activating the nightly Cargo feature. If you do so, Embassy is guaranteed to compile on the exact nightly version specified in rust-toolchain.toml. It might compile with older or newer nightly versions, but that may change in any new patch release.

Why the name?

EMBedded ASYnc! :)

License

This work is licensed under either of

at your option.