054ca17f66
- probe-run screwed up the last release 2 weeks ago and it's still not fixed (issue 391). Doesn't look well maintained. - Even when it's not broken, it lags behind probe-rs-cli in new chips support because it's slow in updating probe-rs.
21 lines
427 B
TOML
21 lines
427 B
TOML
[unstable]
|
|
build-std = ["core"]
|
|
build-std-features = ["panic_immediate_abort"]
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
|
#runner = "./fruitrunner"
|
|
runner = "probe-rs-cli run --chip nrf52840_xxAA"
|
|
|
|
rustflags = [
|
|
# Code-size optimizations.
|
|
"-Z", "trap-unreachable=no",
|
|
#"-C", "no-vectorize-loops",
|
|
"-C", "force-frame-pointers=yes",
|
|
]
|
|
|
|
[build]
|
|
target = "thumbv7em-none-eabi"
|
|
|
|
[env]
|
|
DEFMT_LOG = "trace"
|