aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/layer-by-layer/blinky-irq
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-02-11 12:22:24 +0100
committerGitHub <[email protected]>2025-02-11 12:22:24 +0100
commit05bbb99603e16dd58604bfd1b59871eb551c74a3 (patch)
tree0ed12675f9923e0190834e15c95273a13fb76dff /docs/examples/layer-by-layer/blinky-irq
parent76fb3a54f38c20f1b16de60da12d21d98bf250fd (diff)
parent01b7ff8ff04af62cc04331a229f5305d320907fe (diff)
Merge pull request #3870 from kkrolczyk/kk/mostly-docu-changes-and-examples-fix
dfu documentation update, fix a couple issues
Diffstat (limited to 'docs/examples/layer-by-layer/blinky-irq')
-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