embassy/README.md

158 lines
7.6 KiB
Markdown
Raw Normal View History

2020-09-22 16:03:43 +00:00
# Embassy
2022-04-18 23:31:20 +00:00
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.
## <a href="https://embassy.dev/dev/index.html">Documentation</a> - <a href="https://docs.embassy.dev/">API reference</a> - <a href="https://embassy.dev/">Website</a> - <a href="https://matrix.to/#/#embassy-rs:matrix.org">Chat</a>
2022-04-18 23:31:20 +00:00
## 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 <a href="https://rust-lang.github.io/async-book/">async/await</a> 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 <a href="https://tweedegolf.nl/en/blog/65/async-rust-vs-rtos-showdown">faster and smaller than one!</a>
## Batteries included
2022-04-18 23:34:39 +00:00
- **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.
2022-04-18 23:31:20 +00:00
- <a href="https://docs.embassy.dev/embassy-stm32/">embassy-stm32</a>, for all STM32 microcontroller families.
- <a href="https://docs.embassy.dev/embassy-nrf/">embassy-nrf</a>, for the Nordic Semiconductor nRF52, nRF53, nRF91 series.
2023-03-05 19:19:18 +00:00
- <a href="https://docs.embassy.dev/embassy-rp/">embassy-rp</a>, for the Raspberry Pi RP2040 microcontroller.
2023-03-02 11:36:41 +00:00
- <a href="https://github.com/esp-rs">esp-rs</a>, for the Espressif Systems ESP32 series of chips.
- Embassy HAL support for Espressif chips is being developed in the [esp-rs/esp-hal](https://github.com/esp-rs/esp-hal) repository.
- Async WiFi, Bluetooth and ESP-NOW is being developed in the [esp-rs/esp-wifi](https://github.com/esp-rs/esp-wifi) repository.
2022-04-18 23:31:20 +00:00
2022-04-18 23:34:39 +00:00
- **Time that Just Works** -
No more messing with hardware timers. <a href="https://docs.embassy.dev/embassy-time">embassy_time</a> provides Instant, Duration and Timer types that are globally available and never overflow.
2022-04-18 23:31:20 +00:00
2022-04-18 23:34:39 +00:00
- **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 <a href="https://github.com/embassy-rs/embassy/blob/master/examples/nrf52840/src/bin/multiprio.rs">example</a>.
2022-04-18 23:31:20 +00:00
2022-04-18 23:35:13 +00:00
- **Low-power ready** -
2022-04-18 23:31:20 +00:00
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.
2022-04-18 23:34:39 +00:00
- **Networking** -
2022-04-18 23:31:20 +00:00
The <a href="https://docs.embassy.dev/embassy-net/">embassy-net</a> network stack implements extensive networking functionality, including Ethernet, IP, TCP, UDP, ICMP and DHCP. Async drastically simplifies managing timeouts and serving multiple connections concurrently.
2022-04-18 23:34:39 +00:00
- **Bluetooth** -
2022-04-18 23:31:20 +00:00
The <a href="https://github.com/embassy-rs/nrf-softdevice">nrf-softdevice</a> crate provides Bluetooth Low Energy 4.x and 5.x support for nRF52 microcontrollers.
2023-07-22 22:06:04 +00:00
The <a href="https://github.com/embassy-rs/embassy/tree/main/embassy-stm32-wpan">embassy-stm32-wpan</a> crate provides Bluetooth Low Energy 5.x support for stm32wb microcontrollers.
2022-04-18 23:31:20 +00:00
2023-12-31 02:23:07 +00:00
- **LoRa** - The <a href="https://github.com/lora-rs/lora-rs">lora-rs</a> project provides an async LoRa and LoRaWAN stack that works well on Embassy.
2022-04-18 23:31:20 +00:00
2022-04-18 23:34:39 +00:00
- **USB** -
2022-04-18 23:31:20 +00:00
<a href="https://docs.embassy.dev/embassy-usb/">embassy-usb</a> 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.
2022-04-18 23:34:39 +00:00
- **Bootloader and DFU** -
2022-04-18 23:31:20 +00:00
<a href="https://github.com/embassy-rs/embassy/tree/master/embassy-boot">embassy-boot</a> is a lightweight bootloader supporting firmware application upgrades in a power-fail-safe way, with trial boots and rollbacks.
## Sneak peek
2022-06-15 08:44:15 +00:00
```rust,ignore
2022-04-18 23:31:20 +00:00
use defmt::info;
use embassy_executor::Spawner;
use embassy_time::{Duration, Timer};
2022-04-18 23:31:20 +00:00
use embassy_nrf::gpio::{AnyPin, Input, Level, Output, OutputDrive, Pin, Pull};
use embassy_nrf::Peripherals;
// Declare async tasks
#[embassy_executor::task]
2022-04-18 23:31:20 +00:00
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;
2022-04-18 23:31:20 +00:00
led.set_low();
Timer::after_millis(150).await;
2022-04-18 23:31:20 +00:00
}
}
// Main is itself an async task as well.
#[embassy_executor::main]
async fn main(spawner: Spawner) {
let p = embassy_nrf::init(Default::default());
2022-04-18 23:31:20 +00:00
// 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!");
}
}
```
2020-09-25 01:50:14 +00:00
2021-06-05 03:31:44 +00:00
## Examples
2020-09-25 01:50:14 +00:00
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).
2022-04-18 23:31:20 +00:00
* `examples/stm32xx` for the various STM32 families.
2021-06-05 03:31:44 +00:00
* `examples/rp` are for the RP2040 chip.
2022-04-18 23:31:20 +00:00
* `examples/std` are designed to run locally on your PC.
2020-09-25 01:50:14 +00:00
2021-06-05 03:31:44 +00:00
### Running examples
2023-06-29 01:11:22 +00:00
- Install `probe-rs`.
2020-09-25 01:50:14 +00:00
2022-06-15 08:44:15 +00:00
```bash
2023-06-29 01:11:22 +00:00
cargo install probe-rs --features cli
2020-09-25 01:50:14 +00:00
```
- Change directory to the sample's base directory. For example:
2022-06-15 08:44:15 +00:00
```bash
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.
2020-09-25 01:50:14 +00:00
- Run the example
For example:
2022-06-15 08:44:15 +00:00
```bash
2023-05-30 23:12:08 +00:00
cargo run --release --bin blinky
2020-09-25 01:50:14 +00:00
```
2023-07-22 22:06:04 +00:00
For more help getting started, see [Getting Started][1] and [Running the Examples][2].
## Developing Embassy with Rust Analyzer based editors
The [Rust Analyzer](https://rust-analyzer.github.io/) is used by [Visual Studio Code](https://code.visualstudio.com/)
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.linkedProjects`setting.
2020-09-25 01:50:14 +00:00
## 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.
2021-12-13 12:23:18 +00:00
2020-09-22 16:03:43 +00:00
## Why the name?
2020-09-25 01:50:14 +00:00
EMBedded ASYnc! :)
2020-09-22 16:03:43 +00:00
## License
This work is licensed under either of
- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or
<http://www.apache.org/licenses/LICENSE-2.0>)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
2020-09-22 16:03:43 +00:00
at your option.
2021-07-28 13:09:19 +00:00
2023-07-22 22:06:04 +00:00
[1]: https://github.com/embassy-rs/embassy/wiki/Getting-Started
[2]: https://github.com/embassy-rs/embassy/wiki/Running-the-Examples