63 lines
1.3 KiB
TOML
63 lines
1.3 KiB
TOML
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
# TODO(2) replace `$CHIP` with your chip's name (see `probe-run --list-chips` output)
|
|
runner = "probe-rs run --chip STM32F401CCUx"
|
|
rustflags = [
|
|
"-C", "linker=flip-link",
|
|
"-C", "link-arg=-Tlink.x",
|
|
"-C", "link-arg=-Tdefmt.x",
|
|
# This is needed if your flash or ram addresses are not aligned to 0x10000 in memory.x
|
|
# See https://github.com/rust-embedded/cortex-m-quickstart/pull/95
|
|
"-C", "link-arg=--nmagic",
|
|
]
|
|
|
|
[build]
|
|
target = "thumbv7em-none-eabihf"
|
|
|
|
[alias]
|
|
rb = "run --bin"
|
|
rrb = "run --release --bin"
|
|
|
|
[env]
|
|
DEFMT_LOG = "debug"
|
|
|
|
|
|
|
|
# cargo build/run
|
|
[profile.dev]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = true # <-
|
|
incremental = false
|
|
opt-level = 'z' # <-
|
|
overflow-checks = true # <-
|
|
|
|
# cargo test
|
|
[profile.test]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = true # <-
|
|
incremental = false
|
|
opt-level = 3 # <-
|
|
overflow-checks = true # <-
|
|
|
|
# cargo build/run --release
|
|
[profile.release]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = false # <-
|
|
incremental = false
|
|
lto = 'fat'
|
|
opt-level = 3 # <-
|
|
overflow-checks = false # <-
|
|
|
|
# cargo test --release
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
debug = 2
|
|
debug-assertions = false # <-
|
|
incremental = false
|
|
lto = 'fat'
|
|
opt-level = 3 # <-
|
|
overflow-checks = false # <-
|
|
|