rtic/actor-example/firmware/.cargo/config.toml

15 lines
336 B
TOML
Raw Permalink Normal View History

2021-09-27 15:18:37 +02:00
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
runner = "probe-run --chip nrf52840"
rustflags = [
"-C", "linker=flip-link",
"-C", "link-arg=-Tdefmt.x",
"-C", "link-arg=--nmagic",
]
[build]
target = "thumbv7em-none-eabihf" # Cortex-M4F and Cortex-M7F (with FPU)
[alias]
rb = "run --bin"
rrb = "run --release --bin"