diff options
| author | Ulf Lilleengen <[email protected]> | 2022-04-19 14:42:38 +0200 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2022-04-19 20:07:06 +0200 |
| commit | 2afff617f652d0fdcfa9ffcfd49062e3d2c996a3 (patch) | |
| tree | bc531122365086cd24a12a9331c94f9f042cad3a /examples/boot/Cargo.toml | |
| parent | e2ed41b3832db17633ae8ae1ee9391639c3a9229 (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.toml | 4 |
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" | |||
| 5 | version = "0.1.0" | 5 | version = "0.1.0" |
| 6 | 6 | ||
| 7 | [dependencies] | 7 | [dependencies] |
| 8 | embassy = { version = "0.1.0", path = "../../embassy" } | 8 | embassy = { version = "0.1.0", path = "../../embassy", features = ["nightly"] } |
| 9 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["time-driver-rtc1", "gpiote"] } | 9 | embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", "nightly"] } |
| 10 | embassy-boot-nrf = { version = "0.1.0", path = "../../embassy-boot/nrf" } | 10 | embassy-boot-nrf = { version = "0.1.0", path = "../../embassy-boot/nrf" } |
| 11 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits" } | 11 | embassy-traits = { version = "0.1.0", path = "../../embassy-traits" } |
| 12 | 12 | ||
