aboutsummaryrefslogtreecommitdiff
path: root/examples/stm32h723
diff options
context:
space:
mode:
Diffstat (limited to 'examples/stm32h723')
-rw-r--r--examples/stm32h723/Cargo.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/stm32h723/Cargo.toml b/examples/stm32h723/Cargo.toml
index f7d819867..5a762259b 100644
--- a/examples/stm32h723/Cargo.toml
+++ b/examples/stm32h723/Cargo.toml
@@ -3,6 +3,7 @@ edition = "2021"
3name = "embassy-stm32h723-examples" 3name = "embassy-stm32h723-examples"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6publish = false
6 7
7[dependencies] 8[dependencies]
8# Change stm32h723zg to your chip name, if necessary. 9# Change stm32h723zg to your chip name, if necessary.
@@ -66,3 +67,8 @@ incremental = false
66lto = 'fat' 67lto = 'fat'
67opt-level = 3 # <- 68opt-level = 3 # <-
68overflow-checks = false # <- 69overflow-checks = false # <-
70
71[package.metadata.embassy]
72build = [
73 { target = "thumbv7em-none-eabi", artifact-dir = "out/examples/stm32h723" }
74]