mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
23 lines
578 B
TOML
23 lines
578 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"
|
|
#runner = "teleprobe local run --chip STM32H7S3L8Hx --elf"
|
|
|
|
rustflags = [
|
|
# Code-size optimizations.
|
|
#"-Z", "trap-unreachable=no",
|
|
"-C", "no-vectorize-loops",
|
|
]
|
|
|
|
[build]
|
|
#target = "thumbv6m-none-eabi"
|
|
#target = "thumbv7m-none-eabi"
|
|
target = "thumbv7em-none-eabi"
|
|
#target = "thumbv8m.main-none-eabihf"
|
|
|
|
[env]
|
|
DEFMT_LOG = "trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,smoltcp=info"
|