Modern embedded framework, using Rust and async.
Find a file
2024-03-12 19:30:20 +00:00
.github usb-dfu: add docs metadata. 2024-01-26 14:23:51 +01:00
.vscode No personal preferences in public repository 2024-03-09 12:11:09 +01:00
cyw43 cyw43: Reuse buf to reduce stack usage 2024-02-16 00:33:23 +01:00
cyw43-firmware changelog 2023-07-28 17:34:07 -04:00
cyw43-pio rp/gpio: remove generics. 2024-01-22 21:32:10 +01:00
docs docs: update broken reference in basic_application.adoc 2024-03-01 10:13:59 +01:00
embassy-boot Merge pull request #2543 from badrbouslikhin/usb-dfu-erase-then-write 2024-02-14 09:35:41 +01:00
embassy-boot-nrf ci 2024-03-03 21:07:08 -05:00
embassy-boot-rp ci 2024-03-03 21:07:08 -05:00
embassy-boot-stm32 ok 2024-03-03 18:43:44 -05:00
embassy-embedded-hal Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
embassy-executor executor: remove portable-atomic for riscv. 2024-03-02 00:21:56 +01:00
embassy-executor-macros Merge pull request #2273 from djdisodo/main 2024-01-19 23:26:55 +01:00
embassy-futures Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
embassy-hal-internal nrf/buffered_uart: refactor so rx/tx halves are independent. 2024-02-21 22:13:35 +01:00
embassy-net net/tcp: fix flush() not waiting for ACK of FIN. 2024-02-21 21:13:10 +01:00
embassy-net-adin1110 Fix invalid "async" crates.io category. 2024-01-12 00:39:01 +01:00
embassy-net-driver Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
embassy-net-driver-channel Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
embassy-net-enc28j60 Fix invalid "async" crates.io category. 2024-01-12 00:39:01 +01:00
embassy-net-esp-hosted Fix invalid "async" crates.io category. 2024-01-12 00:39:01 +01:00
embassy-net-ppp Fix invalid "async" crates.io category. 2024-01-12 00:39:01 +01:00
embassy-net-tuntap net-tuntap: fix docs target. 2024-01-12 01:10:16 +01:00
embassy-net-wiznet Fix invalid "async" crates.io category. 2024-01-12 00:39:01 +01:00
embassy-nrf Fixed suggestions, added nRF51 to BLE 2024-03-05 15:01:05 +01:00
embassy-rp fixup another display -> debug 2024-02-22 06:40:39 -05:00
embassy-stm32 Merge pull request #2691 from caleb-garrett/cryp-dma 2024-03-12 19:30:20 +00:00
embassy-stm32-wpan Add scatter memory files for extended BLE stack 2024-02-01 10:41:41 -05:00
embassy-sync rustfmt 2024-03-12 15:37:53 +01:00
embassy-time time: cloneable delay 2024-02-18 17:01:09 +00:00
embassy-time-driver Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
embassy-time-queue-driver Complete cargo.tomls more. 2024-01-12 00:32:47 +01:00
embassy-usb update usbd-hid to latest 2024-02-26 17:28:29 +08:00
embassy-usb-dfu usb-dfu: add docs metadata. 2024-01-26 14:23:51 +01:00
embassy-usb-driver Fix invalid "async" crates.io category. 2024-01-12 00:39:01 +01:00
embassy-usb-logger Merge pull request #2414 from JomerDev/usb-logger-without-device 2024-02-12 20:04:57 +00:00
examples Merge pull request #2691 from caleb-garrett/cryp-dma 2024-03-12 19:30:20 +00:00
tests Merge pull request #2691 from caleb-garrett/cryp-dma 2024-03-12 19:30:20 +00:00
.gitattributes mark json file inside .vscode folder as jsonc 2024-01-06 11:59:55 +08:00
.gitignore stm32: use stm32-metapac from crates.io, remove stm32-data submodule. 2023-03-20 02:38:12 +01:00
ci-nightly.sh add avr to ci 2024-01-02 23:39:06 +09:00
ci.sh ci stm32: build target fix 2024-03-06 19:54:59 +08:00
LICENSE-APACHE Centralize license and MSRV boilerplate into the repo readme. 2024-01-11 18:18:35 +01:00
LICENSE-MIT Centralize license and MSRV boilerplate into the repo readme. 2024-01-11 18:18:35 +01:00
NOTICE.md Update copyright holder names and add notice file (#790) 2022-06-02 13:09:37 +02:00
README.md docs: use correct link to book 2024-02-09 20:30:50 +01:00
rust-toolchain-nightly.toml ci: use beta, add secondary nightly ci. 2023-12-21 15:03:57 +01:00
rust-toolchain.toml ci: use stable 1.75. 2023-12-28 18:14:55 +01:00
rustfmt.toml Add rustfmt.toml with some nice settings. 2022-06-12 22:15:28 +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.
    • embassy-rp, for the Raspberry Pi RP2040 microcontroller.
    • esp-rs, for the Espressif Systems ESP32 series of chips.
      • Embassy HAL support for Espressif chips is being developed in the esp-rs/esp-hal repository.
      • Async WiFi, Bluetooth and ESP-NOW is being developed in the esp-rs/esp-wifi repository.
  • 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. The embassy-stm32-wpan crate provides Bluetooth Low Energy 5.x support for stm32wb microcontrollers.

  • LoRa - The lora-rs project provides an async LoRa and LoRaWAN stack that works well on Embassy.

  • 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_executor::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_millis(150).await;
        led.set_low();
        Timer::after_millis(150).await;
    }
}

// Main is itself an async task as well.
#[embassy_executor::main]
async fn main(spawner: Spawner) {
    let p = embassy_nrf::init(Default::default());

    // 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/nrf52840 run on the nrf52840-dk board (PCA10056) but should be easily adaptable to other nRF52 chips and boards.
  • examples/nrf5340 run on the nrf5340-dk board (PCA10095).
  • 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

  • Install probe-rs.
cargo install probe-rs --features cli
  • Change directory to the sample's base directory. For example:
cd examples/nrf52840
  • Ensure Cargo.toml sets the right feature for the name of the chip you are programming. If this name is incorrect, the example may fail to run or immediately crash after being programmed.

  • Ensure .cargo/config.toml contains the name of the chip you are programming.

  • Run the example

For example:

cargo run --release --bin blinky

For more help getting started, see Getting Started and Running the Examples.

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 stable Rust 1.75 and up. It might compile with older versions but that may change in any new patch release.

Why the name?

EMBedded ASYnc! :)

License

Embassy is 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.