mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
14 lines
336 B
TOML
14 lines
336 B
TOML
[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"
|