aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32l5/Cargo.toml
diff options
context:
space:
mode:
authorChristian Enderle <[email protected]>2024-01-02 23:05:58 +0100
committerChristian Enderle <[email protected]>2024-01-02 23:05:58 +0100
commit38303009907fbf9ebd4919e85166c8bebb6e0ba4 (patch)
tree4401fba4e2d40c4b82e029e09b51647237c4618f /examples/stm32l5/Cargo.toml
parentf1c077ed2e420b1b4f8c1835fe05a1279a742267 (diff)
stm32l5: add low-power stop example
Diffstat (limited to 'examples/stm32l5/Cargo.toml')
-rw-r--r--examples/stm32l5/Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/stm32l5/Cargo.toml b/examples/stm32l5/Cargo.toml
index 329e7b98d..c50314587 100644
--- a/examples/stm32l5/Cargo.toml
+++ b/examples/stm32l5/Cargo.toml
@@ -6,7 +6,7 @@ license = "MIT OR Apache-2.0"
6 6
7[dependencies] 7[dependencies]
8# Change stm32l552ze to your chip name, if necessary. 8# Change stm32l552ze to your chip name, if necessary.
9embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = [ "defmt", "unstable-pac", "stm32l552ze", "time-driver-any", "exti", "memory-x"] } 9embassy-stm32 = { version = "0.1.0", path = "../../embassy-stm32", features = [ "defmt", "unstable-pac", "stm32l552ze", "time-driver-any", "exti", "memory-x", "low-power"] }
10embassy-sync = { version = "0.5.0", path = "../../embassy-sync", features = ["defmt"] } 10embassy-sync = { version = "0.5.0", path = "../../embassy-sync", features = ["defmt"] }
11embassy-executor = { version = "0.4.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] } 11embassy-executor = { version = "0.4.0", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
12embassy-time = { version = "0.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] } 12embassy-time = { version = "0.2", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime", "tick-hz-32_768"] }
@@ -30,3 +30,7 @@ static_cell = "2"
30 30
31[profile.release] 31[profile.release]
32debug = 2 32debug = 2
33
34[[bin]]
35name = "stop"
36default-features = ["embassy-stm32/low-power"]