From 2afff617f652d0fdcfa9ffcfd49062e3d2c996a3 Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Tue, 19 Apr 2022 14:42:38 +0200 Subject: Support multiple flash instances in embassy-boot * Add FlashProvider and FlashConfig traits to define flash characteristics * Use traits in bootloader to retrieve flash handles and for copying data between flash instances * Add convenience implementations for using a single flash instance. --- examples/boot/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/boot/Cargo.toml') diff --git a/examples/boot/Cargo.toml b/examples/boot/Cargo.toml index 36e2e169d..2da659478 100644 --- a/examples/boot/Cargo.toml +++ b/examples/boot/Cargo.toml @@ -5,8 +5,8 @@ name = "embassy-boot-examples" version = "0.1.0" [dependencies] -embassy = { version = "0.1.0", path = "../../embassy" } -embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["time-driver-rtc1", "gpiote"] } +embassy = { version = "0.1.0", path = "../../embassy", features = ["nightly"] } +embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", "nightly"] } embassy-boot-nrf = { version = "0.1.0", path = "../../embassy-boot/nrf" } embassy-traits = { version = "0.1.0", path = "../../embassy-traits" } -- cgit