embassy/tests/stm32/.cargo/config.toml
Dario Nieuwenhuis b49bc449d7 repro on f4.
2023-05-03 22:52:59 +02:00

21 lines
467 B
TOML

[unstable]
build-std = ["core"]
build-std-features = ["panic_immediate_abort"]
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
runner = "teleprobe client run --target nucleo-stm32f429zi --elf"
#runner = "teleprobe local run --chip STM32F103C8 --elf"
rustflags = [
# Code-size optimizations.
"-Z", "trap-unreachable=no",
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]
[build]
target = "thumbv7m-none-eabi"
[env]
DEFMT_LOG = "trace"