2022-07-09 02:13:43 +02:00
|
|
|
[unstable]
|
2023-04-19 01:57:37 +02:00
|
|
|
# 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"]
|
2022-07-09 02:13:43 +02:00
|
|
|
|
|
|
|
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
|
2023-05-30 00:10:36 +02:00
|
|
|
runner = "teleprobe client run"
|
|
|
|
#runner = "teleprobe local run --chip RP2040 --elf"
|
2022-07-09 02:13:43 +02:00
|
|
|
|
|
|
|
rustflags = [
|
|
|
|
# Code-size optimizations.
|
|
|
|
"-Z", "trap-unreachable=no",
|
|
|
|
"-C", "inline-threshold=5",
|
|
|
|
"-C", "no-vectorize-loops",
|
|
|
|
]
|
|
|
|
|
|
|
|
[build]
|
|
|
|
target = "thumbv6m-none-eabi"
|
|
|
|
|
|
|
|
[env]
|
2023-09-28 03:45:52 +02:00
|
|
|
DEFMT_LOG = "trace,embassy_hal_internal=debug,embassy_net_esp_hosted=debug,cyw43=info,cyw43_pio=info,smoltcp=info"
|