aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/stm32l1
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2023-09-02 08:50:03 +0200
committerDániel Buga <[email protected]>2023-09-02 08:50:03 +0200
commit360286e67c355d23a355f83bbb6586b3fa3b3a7e (patch)
tree287ce8e175dc054d7b7dec290ab97bbaef228429 /examples/boot/application/stm32l1
parent0c66636d003979c3aecff36c9e03e87f34147a94 (diff)
Fix bootloader application examples
Diffstat (limited to 'examples/boot/application/stm32l1')
-rw-r--r--examples/boot/application/stm32l1/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/boot/application/stm32l1/Cargo.toml b/examples/boot/application/stm32l1/Cargo.toml
index 2896afa3e..f2ff6ae0e 100644
--- a/examples/boot/application/stm32l1/Cargo.toml
+++ b/examples/boot/application/stm32l1/Cargo.toml
@@ -5,7 +5,7 @@ version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8embassy-sync = { version = "0.2.0", path = "../../../../embassy-sync", features = ["defmt"] } 8embassy-sync = { version = "0.2.0", path = "../../../../embassy-sync" }
9embassy-executor = { version = "0.3.0", path = "../../../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "nightly", "integrated-timers"] } 9embassy-executor = { version = "0.3.0", path = "../../../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "nightly", "integrated-timers"] }
10embassy-time = { version = "0.1.2", path = "../../../../embassy-time", features = ["nightly", "tick-hz-32_768"] } 10embassy-time = { version = "0.1.2", path = "../../../../embassy-time", features = ["nightly", "tick-hz-32_768"] }
11embassy-stm32 = { version = "0.1.0", path = "../../../../embassy-stm32", features = ["unstable-traits", "nightly", "stm32l151cb-a", "time-driver-any", "exti"] } 11embassy-stm32 = { version = "0.1.0", path = "../../../../embassy-stm32", features = ["unstable-traits", "nightly", "stm32l151cb-a", "time-driver-any", "exti"] }
@@ -25,5 +25,6 @@ defmt = [
25 "dep:defmt", 25 "dep:defmt",
26 "embassy-stm32/defmt", 26 "embassy-stm32/defmt",
27 "embassy-boot-stm32/defmt", 27 "embassy-boot-stm32/defmt",
28 "embassy-sync/defmt",
28] 29]
29skip-include = [] 30skip-include = []