rust-stm32-blinky/.cargo/config

10 lines
212 B
Plaintext
Raw Normal View History

2020-08-23 15:06:11 +02:00
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2019-05-11 15:32:38 +02:00
rustflags = [
2020-04-19 18:02:31 +02:00
"-C", "linker=rust-lld",
2019-05-11 15:32:38 +02:00
"-C", "link-arg=-Tlink.x",
]
2020-08-23 15:06:11 +02:00
runner = "probe-run --chip STM32F103CB"
2019-05-11 15:32:38 +02:00
[build]
2020-04-19 18:02:31 +02:00
target = "thumbv7m-none-eabi"