Modern embedded framework, using Rust and async.
Find a file
Jonathan Dickinson 322f9cb153
fix (rp i2c): fix restart/stop flags for i2c master methods
Update the start and stop flags for all read/write/read_write methods to match
those in the default blocking implementation of these methods (as well as
other RP2040 I2C implementations, and expected I2C behavior).

Also adds a write_read_async method that doesnt require using embedded-hal, as
this is required to use I2C in an idiomatic fashion (see TI Application Report
SLVA704).
2023-10-10 20:24:38 -04:00
.github ci: set net.git-fetch-with-cli=true 2023-09-16 02:16:33 +02:00
.vscode cleanup vscode settings. 2023-08-15 14:15:29 +02:00
cyw43 feat: bump embassy-sync version to 0.3.0 2023-09-14 18:26:00 +02:00
cyw43-firmware changelog 2023-07-28 17:34:07 -04:00
cyw43-pio rp: relocate programs implicitly during load 2023-07-28 19:33:02 +02:00
docs docs: minor doc improvements and cleanup 2023-10-03 21:35:31 +02:00
embassy-boot feat: bump embassy-sync version to 0.3.0 2023-09-14 18:26:00 +02:00
embassy-embedded-hal Add some uncontroversial derives to Error types 2023-10-06 17:45:35 +02:00
embassy-executor update UninitCell::write call in arch::wasm too 2023-09-14 13:59:24 +10:00
embassy-futures Sync all fmt.rs files. 2023-08-30 01:37:18 +02:00
embassy-hal-internal Sync all fmt.rs files. 2023-08-30 01:37:18 +02:00
embassy-lora Remove impl_trait_projections. 2023-10-02 14:00:49 +02:00
embassy-macros Prepare executor and macros for release (#1825) 2023-08-25 23:32:00 +02:00
embassy-net net: add support for dhcp hostname option. 2023-10-07 01:33:21 +02:00
embassy-net-adin1110 Add more documentation and comment 2023-09-07 22:32:20 +02:00
embassy-net-driver Add Ip hardware address to Driver 2023-07-31 14:21:26 +02:00
embassy-net-driver-channel feat: bump embassy-sync version to 0.3.0 2023-09-14 18:26:00 +02:00
embassy-net-enc28j60 enc28j60: expose a the MAC address via address() getter 2023-09-29 17:23:39 +02:00
embassy-net-esp-hosted feat: bump embassy-sync version to 0.3.0 2023-09-14 18:26:00 +02:00
embassy-net-ppp update embedded-io, embedded-nal-async. 2023-10-04 00:10:55 +02:00
embassy-net-tuntap net: move tuntap from std example to separate crate. (#1737) 2023-08-03 14:23:11 +02:00
embassy-net-wiznet Release embassy-time v0.1.3 2023-08-28 08:00:18 -07:00
embassy-nrf update embedded-io, embedded-nal-async. 2023-10-04 00:10:55 +02:00
embassy-rp fix (rp i2c): fix restart/stop flags for i2c master methods 2023-10-10 20:24:38 -04:00
embassy-stm32 stm32/rcc: unify L0 and L1. 2023-10-11 01:22:27 +02:00
embassy-stm32-wpan stm32: misc. cleanup 2023-09-17 18:47:22 -05:00
embassy-sync update embedded-io, embedded-nal-async. 2023-10-04 00:10:55 +02:00
embassy-time Add more tick rates 2023-09-28 19:06:38 +02:00
embassy-usb Add async interface for CDC control changes 2023-09-19 15:42:26 +01:00
embassy-usb-driver Update Rust nightly. 2023-05-19 17:12:39 +02:00
embassy-usb-logger feat: bump embassy-sync version to 0.3.0 2023-09-14 18:26:00 +02:00
examples stm32/rcc: rename HSE32 to HSE 2023-10-11 01:06:44 +02:00
tests stm32/rcc: unify L0 and L1. 2023-10-11 01:22:27 +02:00
.gitattributes Add gitattributes to control crlf conversion. 2023-07-18 14:23:37 +02:00
.gitignore stm32: use stm32-metapac from crates.io, remove stm32-data submodule. 2023-03-20 02:38:12 +01:00
ci.sh ci: set target dir if not specified. 2023-10-07 01:34:17 +02:00
ci_stable.sh Update to embedded-io 0.5 (#1752) 2023-08-07 13:43:09 +02:00
LICENSE-APACHE Update copyright holder names and add notice file (#790) 2022-06-02 13:09:37 +02:00
LICENSE-MIT Update copyright holder names and add notice file (#790) 2022-06-02 13:09:37 +02:00
NOTICE.md Update copyright holder names and add notice file (#790) 2022-06-02 13:09:37 +02:00
README.md update readme 2023-07-22 17:06:04 -05:00
rust-toolchain.toml Update Nightly. 2023-10-02 13:51:13 +02: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 - embassy-lora supports LoRa networking.

  • 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(Duration::from_millis(150)).await;
        led.set_low();
        Timer::after(Duration::from_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 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_executor::main] and #[embassy_executor::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.