embassy/examples/stm32f0/.cargo/config.toml

24 lines
569 B
TOML
Raw Permalink Normal View History

2023-10-11 23:21:28 +02:00
[unstable]
# enabling these breaks the float tests during linking, with intrinsics
# duplicated between embassy-rp and compilter_builtins
build-std = ["core"]
build-std-features = ["panic_immediate_abort"]
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
runner = "teleprobe client run"
#runner = "teleprobe local run --chip RP2040 --elf"
rustflags = [
# Code-size optimizations.
"-Z", "trap-unreachable=no",
]
2021-07-15 18:50:39 +02:00
[target.thumbv6m-none-eabi]
2023-06-29 02:39:28 +02:00
runner = 'probe-rs run --chip STM32F091RCTX'
2021-07-15 18:50:39 +02:00
[build]
target = "thumbv6m-none-eabi"
[env]
DEFMT_LOG = "trace"