aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/layer-by-layer/blinky-irq/Cargo.toml
diff options
context:
space:
mode:
authorKrzysztof Królczyk <[email protected]>2025-02-10 17:38:39 +0100
committerKrzysztof Królczyk <[email protected]>2025-02-11 10:08:47 +0100
commit01b7ff8ff04af62cc04331a229f5305d320907fe (patch)
tree98ad66a99d5bad3938c17aa9d090916e3fa135b4 /docs/examples/layer-by-layer/blinky-irq/Cargo.toml
parente173db1151585702912b572c5195bd23fb4267fe (diff)
fix: layer-by-layer examples
closes: #3794 #3793 Remove 'blinky-irq' from workspace. During linking from workspace level - embassy-stm32 and example code redefine EXTI15_10 symbol Building it separately, outside of workspace works Signed-off-by: Krzysztof Królczyk <[email protected]>
Diffstat (limited to 'docs/examples/layer-by-layer/blinky-irq/Cargo.toml')
-rw-r--r--docs/examples/layer-by-layer/blinky-irq/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/examples/layer-by-layer/blinky-irq/Cargo.toml b/docs/examples/layer-by-layer/blinky-irq/Cargo.toml
index 04ffc23ba..8733ee894 100644
--- a/docs/examples/layer-by-layer/blinky-irq/Cargo.toml
+++ b/docs/examples/layer-by-layer/blinky-irq/Cargo.toml
@@ -1,3 +1,5 @@
1[workspace]
2
1[package] 3[package]
2name = "blinky-irq" 4name = "blinky-irq"
3version = "0.1.0" 5version = "0.1.0"
@@ -5,7 +7,7 @@ edition = "2021"
5license = "MIT OR Apache-2.0" 7license = "MIT OR Apache-2.0"
6 8
7[dependencies] 9[dependencies]
8cortex-m = "0.7" 10cortex-m = { version = "0.7", features = ["critical-section-single-core"] }
9cortex-m-rt = { version = "0.7" } 11cortex-m-rt = { version = "0.7" }
10embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32l475vg", "memory-x", "unstable-pac"] } 12embassy-stm32 = { version = "0.2.0", path = "../../../../embassy-stm32", features = ["stm32l475vg", "memory-x", "unstable-pac"] }
11 13