cheapsdo2.0/.cargo/config

20 lines
586 B
Plaintext
Raw Normal View History

2020-08-23 15:13:57 +02:00
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2021-11-14 00:34:21 +01:00
# TODO(2) replace `$CHIP` with your chip's name (see `probe-run --list-chips` output)
runner = "probe-run --chip STM32F103CB"
2020-08-23 15:13:57 +02:00
rustflags = [
2021-11-14 00:34:21 +01:00
"-C", "linker=flip-link",
2020-08-23 15:13:57 +02:00
"-C", "link-arg=-Tlink.x",
2021-11-14 00:34:21 +01:00
"-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",
2020-08-23 15:13:57 +02:00
]
[build]
2021-11-14 00:34:21 +01:00
target = "thumbv7m-none-eabi" # Cortex-M3
[alias]
rb = "run --bin"
rrb = "run --release --bin"