21 lines
601 B
TOML
21 lines
601 B
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-run --chip STM32F401CCU6"
|
||
|
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"
|