mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 12:20:56 +00:00

* Move `embassy_wifi_bench`, `wifi_bench`, and `wifi_csi` examples to `qa-test` package * Remove blocking BLE example, replace Embassy example with trouble-based scanner * Add BLE `bas_peripheral` example
25 lines
473 B
TOML
25 lines
473 B
TOML
[target.'cfg(target_arch = "riscv32")']
|
|
runner = "espflash flash --monitor"
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
"-C", "force-frame-pointers",
|
|
]
|
|
|
|
[target.'cfg(target_arch = "xtensa")']
|
|
runner = "espflash flash --monitor"
|
|
rustflags = [
|
|
# GNU LD
|
|
"-C", "link-arg=-Wl,-Tlinkall.x",
|
|
"-C", "link-arg=-nostartfiles",
|
|
|
|
# LLD
|
|
# "-C", "link-arg=-Tlinkall.x",
|
|
# "-C", "linker=rust-lld",
|
|
]
|
|
|
|
[env]
|
|
ESP_LOG = "info"
|
|
|
|
[unstable]
|
|
build-std = ["alloc", "core"]
|