aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/Cargo.toml
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2022-04-19 14:42:38 +0200
committerUlf Lilleengen <[email protected]>2022-04-19 20:07:06 +0200
commit2afff617f652d0fdcfa9ffcfd49062e3d2c996a3 (patch)
treebc531122365086cd24a12a9331c94f9f042cad3a /examples/boot/Cargo.toml
parente2ed41b3832db17633ae8ae1ee9391639c3a9229 (diff)
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.
Diffstat (limited to 'examples/boot/Cargo.toml')
-rw-r--r--examples/boot/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
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"
5version = "0.1.0" 5version = "0.1.0"
6 6
7[dependencies] 7[dependencies]
8embassy = { version = "0.1.0", path = "../../embassy" } 8embassy = { version = "0.1.0", path = "../../embassy", features = ["nightly"] }
9embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["time-driver-rtc1", "gpiote"] } 9embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", "nightly"] }
10embassy-boot-nrf = { version = "0.1.0", path = "../../embassy-boot/nrf" } 10embassy-boot-nrf = { version = "0.1.0", path = "../../embassy-boot/nrf" }
11embassy-traits = { version = "0.1.0", path = "../../embassy-traits" } 11embassy-traits = { version = "0.1.0", path = "../../embassy-traits" }
12 12