embassy/tests/stm32/.cargo/config.toml
2023-05-27 15:05:50 -05:00

23 lines
568 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 bluepill-stm32f103c8 --elf"
#runner = "teleprobe local run --chip STM32F103C8 --elf"
#runner = "teleprobe local run --chip STM32WB55RG --elf"
runner = "probe-run --chip STM32WB55RG"
rustflags = [
# Code-size optimizations.
"-Z", "trap-unreachable=no",
"-C", "inline-threshold=5",
"-C", "no-vectorize-loops",
]
[build]
target = "thumbv7em-none-eabi"
[env]
DEFMT_LOG = "trace"