2024-07-28 21:41:42 +02:00
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
|
|
# TODO(2) replace `$CHIP` with your chip's name (see `probe-run --list-chips` output)
|
2024-10-03 22:54:05 +02:00
|
|
|
runner = "probe-rs run --chip STM32F401CCUx"
|
2024-07-28 21:41:42 +02:00
|
|
|
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"
|